diff --git a/src/parser/aison.ts b/src/parser/aison.ts index 7ca9a3686..14b6967eb 100644 --- a/src/parser/aison.ts +++ b/src/parser/aison.ts @@ -1,10 +1,10 @@ /** * AiSON: AiScript Object Notation */ -import type { JsValue } from '../interpreter/util.js'; import { nodeToJs } from '../utils/node-to-js.js'; import { Scanner } from './scanner.js'; import { parseAiSonTopLevel } from './syntaxes/aison.js'; +import type { JsValue } from '../interpreter/util.js'; export class AiSON { public static parse(input: string): JsValue {