Files
pixelheros/extensions/Excel转JSON/node_modules/atomically/dist/utils/temp.d.ts
walkpan 8f57f57c1d dd
2024-08-18 23:38:55 +08:00

12 lines
424 B
TypeScript

import { Disposer } from '../types';
declare const Temp: {
store: Record<string, boolean>;
create: (filePath: string) => string;
get: (filePath: string, creator: (filePath: string) => string, purge?: boolean) => [string, Disposer];
purge: (filePath: string) => void;
purgeSync: (filePath: string) => void;
purgeSyncAll: () => void;
truncate: (filePath: string) => string;
};
export default Temp;