animate/webGl/my-threejs-test/node_modules/@parcel/cache/index.d.ts

12 lines
251 B
TypeScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
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
};