openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
30 lines • 1.05 kB
TypeScript
//#region src/infra/temp-download.d.ts
type TempDownloadTarget = {
dir: string;
path: string;
file(fileName?: string): string;
cleanup: () => Promise<void>;
[Symbol.asyncDispose](): Promise<void>;
};
declare function sanitizeTempFileName(fileName: string): string;
/** Build a stable temp path shape while keeping caller-controlled text filename-safe. */
declare function buildRandomTempFilePath(params: {
prefix: string;
extension?: string;
tmpDir?: string;
now?: number;
uuid?: string;
}): string;
declare function createTempDownloadTarget(params: {
prefix: string;
fileName?: string;
tmpDir?: string;
}): Promise<TempDownloadTarget>;
/** Run with a private temp download path and always attempt workspace cleanup. */
declare function withTempDownloadPath<T>(params: {
prefix: string;
fileName?: string;
tmpDir?: string;
}, fn: (tmpPath: string) => Promise<T>): Promise<T>;
//#endregion
export { withTempDownloadPath as i, createTempDownloadTarget as n, sanitizeTempFileName as r, buildRandomTempFilePath as t };