@graphql-mesh/utils
Version:
8 lines (7 loc) • 523 B
TypeScript
/// <reference types="node" />
import { fs } from '@graphql-mesh/cross-helpers';
export declare function pathExists(path: string): Promise<boolean>;
export declare function writeJSON<T>(path: string, data: T, replacer?: (this: any, key: string, value: any) => any, space?: string | number): Promise<void>;
export declare const writeFile: typeof fs.promises.writeFile;
export declare function mkdir(path: string, options?: fs.MakeDirectoryOptions): Promise<void>;
export declare function rmdirs(dir: string): Promise<void>;