Files
warp/src/cache/index.ts
2021-12-03 23:13:08 +01:00

13 lines
511 B
TypeScript

export * from './impl/MemBlockHeightCache';
// FileBlockHeightCache has to be exported after MemBlockHeightCache,
// otherwise ts-jest complains with
// "TypeError: Class extends value undefined is not a constructor or null".
// Funny that standard tsc does not have such issues..
export * from './impl/FileBlockHeightCache';
export * from './impl/KnexStateCache';
export * from './impl/RemoteBlockHeightCache';
export * from './impl/MemCache';
export * from './BlockHeightSwCache';
export * from './SwCache';