Files
PackControl/node_modules/temp-file
2026-01-15 21:52:12 +01:00
..
2026-01-15 21:52:12 +01:00
2026-01-15 21:52:12 +01:00
2026-01-15 21:52:12 +01:00
2026-01-15 21:52:12 +01:00

temp-file

export function getTempName(prefix?: string | null | undefined): string;

export class TmpDir {
    getTempDir(suffix?: string): Promise<string>;
    
    createTempDir(suffix?: string): Promise<string>;
    
    getTempFile(suffix: string, isDir?: boolean, disposer?: ((file: string) => Promise<void>) | null): Promise<string>;
    
    cleanupSync(): void;
    
    cleanup(): Promise<any>;
}