UNPKG

@tinymce/beehive-flow

Version:

A CLI tool implementing the beehive flow git branching process

8 lines 478 B
/// <reference types="node" /> import * as tmp from 'tmp'; export declare const readFile: (filename: string) => Promise<Buffer>; export declare const readFileAsString: (filename: string) => Promise<string>; export declare const writeFile: (filename: string, contents: string) => Promise<void>; export declare const exists: (filename: string) => Promise<boolean>; export declare const tempFolder: (options?: tmp.DirOptions) => Promise<string>; //# sourceMappingURL=Files.d.ts.map