persona-community-5/.pnpm-store/v3/files/dd/aad87c106bb2dbef43425678df7f4346f1c1fd3a92cb92acdef7e830238f6ee55429dcb73dd2a45d4c62213bbe4abb5c37004d4452d8a9839b06d8c77f8ee1
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

28 lines
1.8 KiB
Plaintext

import { ContextualKeyword } from "../tokenizer/keywords";
import { type StopState } from "../traverser/expression";
export declare function flowParseTypeParameterDeclaration(): void;
export declare function flowParseTypeAnnotation(): void;
export declare function flowParseVariance(): void;
export declare function flowParseFunctionBodyAndFinish(funcContextId: number): void;
export declare function flowParseSubscript(startTokenIndex: number, noCalls: boolean, stopState: StopState): void;
export declare function flowStartParseNewArguments(): void;
export declare function flowTryParseStatement(): boolean;
export declare function flowTryParseExportDefaultExpression(): boolean;
export declare function flowParseIdentifierStatement(contextualKeyword: ContextualKeyword): void;
export declare function flowShouldParseExportDeclaration(): boolean;
export declare function flowShouldDisallowExportDefaultSpecifier(): boolean;
export declare function flowParseExportDeclaration(): void;
export declare function flowShouldParseExportStar(): boolean;
export declare function flowParseExportStar(): void;
export declare function flowAfterParseClassSuper(hasSuper: boolean): void;
export declare function flowStartParseObjPropValue(): void;
export declare function flowParseAssignableListItemTypes(): void;
export declare function flowStartParseImportSpecifiers(): void;
export declare function flowParseImportSpecifier(): void;
export declare function flowStartParseFunctionParams(): void;
export declare function flowAfterParseVarHead(): void;
export declare function flowStartParseAsyncArrowFromCallExpression(): void;
export declare function flowParseMaybeAssign(noIn: boolean, isWithinParens: boolean): boolean;
export declare function flowParseArrow(): boolean;
export declare function flowParseSubscripts(startTokenIndex: number, noCalls?: boolean): void;