persona-community-5/.pnpm-store/v3/files/75/440fdc3a08c1c5432fd1628754a83f0c345dbb86f46131b8f14812cb7d16b7fd85d0c567d14bd771e08662f36033f259235748ecabc0b5888d7d9fac85486a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
368 B
Plaintext

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;