UNPKG

jsii-release

Version:

Release jsii modules to multiple package managers

11 lines (10 loc) 290 B
/** * A temporary directory that cleans when it goes out of scope * * Use with `using`. Could have been async but it's depending * on an already-sync API, so why not sync? */ export declare function autoCleanDir(): { dir: string; [Symbol.asyncDispose]: () => Promise<void>; };