persona-community-5/.pnpm-store/v3/files/b5/09baa797e60dfbb4f807e6947caa705dfadb5736116e2588e78835c9615c8d455c3c5a1e31bf53033a6e695fb24847dce22a32d37476b19499cb7789cf7fc6
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

21 lines
1.2 KiB
Plaintext

import { File } from "../index";
import { type TokenType } from "../tokenizer/types";
export declare function parseTopLevel(): File;
export declare function parseStatement(declaration: boolean): void;
export declare function parseDecorators(): void;
export declare function baseParseMaybeDecoratorArguments(): void;
export declare function parseVarStatement(isBlockScope: boolean): void;
export declare function parseBlock(isFunctionScope?: boolean, contextId?: number): void;
export declare function parseBlockBody(end: TokenType): void;
export declare function parseFunction(functionStart: number, isStatement: boolean, optionalId?: boolean): void;
export declare function parseFunctionParams(allowModifiers?: boolean, funcContextId?: number): void;
export declare function parseClass(isStatement: boolean, optionalId?: boolean): void;
export declare function parseClassPropertyName(classContextId: number): void;
export declare function parsePostMemberNameModifiers(): void;
export declare function parseClassProperty(): void;
export declare function parseExport(): void;
export declare function parseExportFrom(): void;
export declare function baseParseExportStar(): void;
export declare function parseExportSpecifiers(): void;
export declare function parseImport(): void;