mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +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>;
|
||
|
}
|