chore: Update common/web/types/src/util/compiler-interfaces.ts

Co-authored-by: Joshua Horton <joshua_horton@sil.org>
This commit is contained in:
Marc Durdin 2023-07-19 18:23:42 +10:00 • committed by GitHub
parent e2dc338ef1
commit 2a1bbad5f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -220,7 +220,6 @@ export interface CompilerFileSystemCallbacks {
readFileSync(path: string, options: { encoding: string; flag?: string; } | string): string;
readFileSync(path: string, options?: { encoding?: string | null; flag?: string; } | string | null): string | Uint8Array;
writeFileSync(path: string, data: Uint8Array): void;
// statSync(path: string):
existsSync(name: string): boolean;
}