UNPKG

@devlander/collect-exports-for-bundle

Version:

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

16 lines (15 loc) 564 B
import { MatchItem } from '../export-related/create-export-matches'; import { AutoExporterOptions } from '../types/module-exporter.types'; interface PartialConfig extends Partial<AutoExporterOptions> { primaryExportFile?: string | undefined; debug?: boolean; rootDir?: string; } interface ProcessExportsFromMatchItemParams { matchItem: MatchItem; withoutExtension: string; fileContent: string; config: PartialConfig; } export declare function processExportsFromMatchItem(params: ProcessExportsFromMatchItemParams): string[]; export {};