persona-community-5/.pnpm-store/v3/files/7f/68269464cafd62799218b7d9dae1ae8003d2107d5d10227d8b8d037f02313b6f35bd93027b4115399915c4dc63c32be3bed73661001d8979f270ff55c1c005
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

15 lines
816 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { Referencer } from './Referencer';
import { Visitor } from './Visitor';
type ExportNode = TSESTree.ExportAllDeclaration | TSESTree.ExportDefaultDeclaration | TSESTree.ExportNamedDeclaration;
declare class ExportVisitor extends Visitor {
#private;
constructor(node: ExportNode, referencer: Referencer);
static visit(referencer: Referencer, node: ExportNode): void;
protected Identifier(node: TSESTree.Identifier): void;
protected ExportDefaultDeclaration(node: TSESTree.ExportDefaultDeclaration): void;
protected ExportNamedDeclaration(node: TSESTree.ExportNamedDeclaration): void;
protected ExportSpecifier(node: TSESTree.ExportSpecifier): void;
}
export { ExportVisitor };
//# sourceMappingURL=ExportVisitor.d.ts.map