UNPKG

deepmerge-yaml

Version:
6 lines (5 loc) 308 B
/// <reference types="node" /> import * as fs from 'fs'; export declare function readFileSync(...args: Parameters<typeof fs.readFileSync>): string | Buffer; export declare function readFile(filePath: string): Promise<string>; export declare function writeFile(filePath: string, data: string): Promise<void>;