UNPKG

cozy-dataproxy-lib

Version:

Library meant to be by Cozy Cloud's DataProxy apps for data manipulation

6 lines (5 loc) 451 B
import { SearchIndexes, StorageInterface } from './types'; export declare const persistExportDate: (storage: StorageInterface) => Promise<void>; export declare const getExportDate: (storage: StorageInterface) => Promise<string | null>; export declare const exportSearchIndexes: (storage: StorageInterface, searchIndexes: SearchIndexes) => Promise<void>; export declare const importSearchIndexes: (storage: StorageInterface) => Promise<SearchIndexes>;