UNPKG

@amplitude/ampli

Version:

Amplitude CLI

10 lines (9 loc) 561 B
/// <reference types="node" /> import * as fs from 'fs'; export declare function exists(path: string): Promise<boolean>; export declare function readTextFile(path: string): Promise<string>; export declare function writeFile(path: string, data: any): Promise<void>; export declare function unlink(path: string): Promise<void>; export declare function mkdir(path: string, options?: number | string | fs.MakeDirectoryOptions | null): Promise<void>; export declare function tmpDir(): Promise<string>; export declare function rimraf(path: string): Promise<unknown>;