diff --git a/src/lib/transpiler/transpiler.d.ts b/src/lib/transpiler/transpiler.d.ts index 79f990a..accc3bc 100644 --- a/src/lib/transpiler/transpiler.d.ts +++ b/src/lib/transpiler/transpiler.d.ts @@ -1,4 +1,4 @@ -type Location = readonly [file: string, line: number, start: number]; +type Location = [file: string, line: number, start: number]; type SourceMap = (loc: Location) => Location | undefined; type CompilerFactory = (next: Compiler) => Compiler;