chore: lint files

This commit is contained in:
2025-11-16 18:25:11 +07:00
parent 24297b8398
commit 0225db08ce
6 changed files with 165 additions and 160 deletions

View File

@@ -3,8 +3,8 @@ import { Lexer } from './lexer';
import { Parser } from './parser';
export interface ModuleHost {
readFile(file: string): string;
resolve(fromFile: string, specifier: string): string;
readFile: (file: string) => string;
resolve: (fromFile: string, specifier: string) => string;
}
export enum VisitState {