@visulima/fs
Version:
Human friendly file system utilities for Node.js
5 lines (4 loc) • 336 B
TypeScript
import type { WriteYamlOptions, YamlReplacer } from "../types.d.ts";
declare function writeYamlSync(path: URL | string, data: any, options?: WriteYamlOptions): void;
declare function writeYamlSync(path: URL | string, data: any, replacer?: YamlReplacer, options?: WriteYamlOptions | number | string): void;
export default writeYamlSync;