UNPKG

@devlander/collect-exports-for-bundle

Version:

Generate comprehensive export files for TypeScript/JavaScript projects with Rollup compatibility

14 lines (13 loc) 474 B
import { AutoExporterOptions } from '../types/module-exporter.types'; export interface BuildExportsFromPathParams { fileName: string; fileContent: string; results: string[]; usedFunctionTypes: Set<string>; withoutExtension: string; filepath: string; usedFunctionNames: Set<string>; defaultExportString: string[]; config: AutoExporterOptions; } export declare const buildExportsFromPaths: (params: BuildExportsFromPathParams) => string[];