Files
mooknote_web/node_modules/cosmiconfig/dist/readFile.d.ts
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

7 lines
295 B
TypeScript

interface Options {
throwNotFound?: boolean;
}
declare function readFile(filepath: string, options?: Options): Promise<string | null>;
declare function readFileSync(filepath: string, options?: Options): string | null;
export { readFile, readFileSync };
//# sourceMappingURL=readFile.d.ts.map