Files
Botexercito/Frontend/angular-internal-chat/node_modules/tuf-js/dist/utils/tmpfile.d.ts
T

4 lines
150 B
TypeScript
Raw Normal View History

2026-03-22 18:07:19 +00:00
type TempFileHandler<T> = (file: string) => Promise<T>;
export declare const withTempFile: <T>(handler: TempFileHandler<T>) => Promise<T>;
export {};