astro-ghostcms/.pnpm-store/v3/files/75/440fdc3a08c1c5432fd1628754a...

9 lines
368 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { Token } from "./tokenizer/index";
import type { Scope } from "./tokenizer/state";
export declare class File {
tokens: Array<Token>;
scopes: Array<Scope>;
constructor(tokens: Array<Token>, scopes: Array<Scope>);
}
export declare function parse(input: string, isJSXEnabled: boolean, isTypeScriptEnabled: boolean, isFlowEnabled: boolean): File;