mirror of
https://github.com/gristlabs/grist-core.git
synced 2025-12-13 22:51:55 +00:00
8 lines
303 B
TypeScript
8 lines
303 B
TypeScript
|
|
// Add declarations of the promisifies methods of tmp.
|
||
|
|
import {Options, SimpleOptions} from "tmp";
|
||
|
|
declare module "tmp" {
|
||
|
|
function dirAsync(config?: Options): Promise<string>;
|
||
|
|
function fileAsync(config?: Options): Promise<string>;
|
||
|
|
function tmpNameAsync(config?: SimpleOptions): Promise<string>;
|
||
|
|
}
|