13 lines
511 B
TypeScript
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';
|