prc b6c02717e6 Upload complete no-internet building environment. | il y a 1 an | |
---|---|---|
.. | ||
node_modules | il y a 1 an | |
out | il y a 1 an | |
package.json | il y a 1 an | |
readme.md | il y a 1 an |
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>;
}