mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 06:55:25 +00:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import type {FilePath} from '@parcel/types';
|
|
import type {Cache} from './lib/types';
|
|
|
|
export type {Cache} from './lib/types';
|
|
export const FSCache: {
|
|
new (cacheDir: FilePath): Cache
|
|
};
|
|
|
|
export const LMDBCache: {
|
|
new (cacheDir: FilePath): Cache
|
|
};
|