ruvector-extensions
Version:
Advanced features for ruvector: embeddings, UI, exports, temporal tracking, and persistence
18 lines • 761 B
TypeScript
/**
* Example usage of the Database Persistence module
*
* This example demonstrates all major features:
* - Basic save/load operations
* - Snapshot management
* - Export/import
* - Progress callbacks
* - Auto-save configuration
* - Incremental saves
*/
declare function example1_BasicSaveLoad(): Promise<void>;
declare function example2_SnapshotManagement(): Promise<void>;
declare function example3_ExportImport(): Promise<void>;
declare function example4_AutoSaveIncremental(): Promise<void>;
declare function example5_AdvancedProgress(): Promise<void>;
export { example1_BasicSaveLoad, example2_SnapshotManagement, example3_ExportImport, example4_AutoSaveIncremental, example5_AdvancedProgress, };
//# sourceMappingURL=persistence-example.d.ts.map