diff --git a/common/web/types/src/util/compiler-interfaces.ts b/common/web/types/src/util/compiler-interfaces.ts index 51ab8d49d3..b53deb7165 100644 --- a/common/web/types/src/util/compiler-interfaces.ts +++ b/common/web/types/src/util/compiler-interfaces.ts @@ -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; }