FsHelper.d.ts 222 B

1234
  1. /// <reference types="node" />
  2. import * as fs from 'fs';
  3. export declare function fileExistsSync(filePath: fs.PathLike): boolean;
  4. export declare function throwIfIsInvalidSourceFileError(filepath: string, error: any): void;