1
0
mirror of https://github.com/gristlabs/grist-core.git synced 2024-10-27 20:44:07 +00:00
gristlabs_grist-core/stubs/app/server/tmp.d.ts

8 lines
303 B
TypeScript
Raw Normal View History

// 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>;
}