Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readFile.d.ts 295B

1234567
  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