1
0
mirror of https://github.com/actions/setup-node synced 2025-05-14 03:47:46 +00:00
setup-node/node_modules/jest-haste-map/build/persistence/file.d.ts
eric sciple 422b9fdb15 .
2020-01-24 12:21:24 -05:00

9 lines
357 B
TypeScript

import { InternalHasteMap, Persistence } from '../types';
declare class FilePersistence implements Persistence {
write(cachePath: string, internalHasteMap: InternalHasteMap): void;
read(cachePath: string): InternalHasteMap;
getType(): string;
}
declare const _default: FilePersistence;
export default _default;
//# sourceMappingURL=file.d.ts.map