Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
295 bytes
|
Line | |
---|
1 | interface Options {
|
---|
2 | throwNotFound?: boolean;
|
---|
3 | }
|
---|
4 | declare function readFile(filepath: string, options?: Options): Promise<string | null>;
|
---|
5 | declare function readFileSync(filepath: string, options?: Options): string | null;
|
---|
6 | export { readFile, readFileSync };
|
---|
7 | //# sourceMappingURL=readFile.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.