Files
stale/node_modules/jest-haste-map/build/persistence/sqlite.d.ts
T

10 lines
447 B
TypeScript
Raw Normal View History

2020-05-15 15:25:57 -04:00
import { InternalHasteMap, Persistence, FileData } from '../types';
declare class SQLitePersistence implements Persistence {
read(cachePath: string): InternalHasteMap;
write(cachePath: string, internalHasteMap: InternalHasteMap, removedFiles: FileData, changedFiles?: FileData): void;
private getDatabase;
getType(): string;
}
declare const _default: SQLitePersistence;
export default _default;
//# sourceMappingURL=sqlite.d.ts.map