initial commit
This commit is contained in:
11
node_modules/atomically/dist/utils/temp.d.ts
generated
vendored
Normal file
11
node_modules/atomically/dist/utils/temp.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import type { 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;
|
||||
Reference in New Issue
Block a user