tidyai-ts
Version:
AI-powered cross-platform file organizer using OpenRouter API
17 lines • 542 B
TypeScript
export interface FileMove {
fileName: string;
originalPath: string;
newPath: string;
}
export interface OrganizationHistory {
timestamp: string;
moves: FileMove[];
}
export interface DeleteHistory {
timestamp: string;
deletedFiles: string[];
}
export declare function organizeFolder(folderPath: string): Promise<void>;
export declare function deleteUnnecessaryFiles(folderPath: string): Promise<void>;
export declare function undoOrganize(folderPath: string): Promise<void>;
//# sourceMappingURL=organizer.d.ts.map