cleanifix
Version:
Intelligent data cleaning CLI with natural language support - Docker-powered Python engine
19 lines • 486 B
TypeScript
interface CleanOptions {
output?: string;
rules?: string;
config?: string;
dryRun?: boolean;
backup?: boolean;
report?: boolean;
missing?: boolean;
duplicates?: boolean;
strategy?: string;
fillValue?: string;
columns?: string;
subset?: string;
threshold?: string;
aggregationRules?: string;
}
export declare function cleanCommand(input: string, options: CleanOptions): Promise<void>;
export {};
//# sourceMappingURL=clean.d.ts.map