prc b6c02717e6 Upload complete no-internet building environment. | há 1 ano atrás | |
---|---|---|
.. | ||
node_modules | há 1 ano atrás | |
out | há 1 ano atrás | |
package.json | há 1 ano atrás | |
readme.md | há 1 ano atrás |
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>;
}