UNPKG

knip

Version:

Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects

7 lines (6 loc) 551 B
import type { ExportNamedDeclaration, ExportDefaultDeclaration, TSExportAssignment, ExpressionStatement } from 'oxc-parser'; import type { WalkState } from './walk.ts'; export declare function handleExportNamed(node: ExportNamedDeclaration, s: WalkState): void; export declare function handleExportDefault(node: ExportDefaultDeclaration, s: WalkState): void; export declare function handleExportAssignment(node: TSExportAssignment, s: WalkState): void; export declare function handleExpressionStatement(node: ExpressionStatement, s: WalkState): void;