@graphql-codegen/cli
Version:
<p align="center"> <img src="https://github.com/dotansimha/graphql-code-generator/blob/master/logo.png?raw=true" /> </p>
9 lines (8 loc) • 483 B
text/typescript
import { promises } from 'fs';
declare const fsAccess: typeof promises.access;
export declare function access(...args: Parameters<typeof fsAccess>): Promise<void>;
export declare function writeFile(filepath: string, content: string): Promise<void>;
export declare function readFile(filepath: string): Promise<string>;
export declare function unlinkFile(filePath: string, cb?: (err?: Error) => any): void;
export declare function mkdirp(filePath: string): Promise<string>;
export {};