datapilot-cli
Version:
Enterprise-grade streaming multi-format data analysis with comprehensive statistical insights and intelligent relationship detection - supports CSV, JSON, Excel, TSV, Parquet - memory-efficient, cross-platform
13 lines • 530 B
TypeScript
/**
* DataPilot Join Analysis - Phase 1: Foundation Architecture
*
* Simple, focused implementation of core join analysis capabilities.
* Future phases will build upon this foundation.
*/
export * from './types';
export { RelationshipDetector } from './relationship-detector';
export { JoinAnalyzer } from './join-analyzer';
export { IntelligentColumnMatcher } from './column-matcher';
export { JoinFormatter } from './join-formatter';
export { createJoinAnalyzer } from './simple-facade';
//# sourceMappingURL=index.d.ts.map