@devlander/collect-exports-for-bundle
Version:
Generate comprehensive export files for TypeScript/JavaScript projects with Rollup compatibility
13 lines (12 loc) • 370 B
TypeScript
import { Results } from '../../types/module-exporter.types';
export declare const getAbsolutePath: (startPath: string, config: {
debug?: boolean;
results?: Results;
excludedFolders?: string[];
includeIndexes?: boolean;
allowedExtensions: string[];
ignoredExtensions?: string[];
}) => Promise<{
paths: string[];
absolutePath?: string;
}>;