cloudflare
Version:
The official TypeScript library for the Cloudflare API
19 lines • 735 B
TypeScript
import { APIResource } from "../../../../resource.js";
import * as Core from "../../../../core.js";
import { type Response } from "../../../../_shims/index.js";
export declare class Downloads extends APIResource {
/**
* Downloads artifacts for an executed command. Bulk downloads are not supported
*/
get(commandId: string, filename: string, params: DownloadGetParams, options?: Core.RequestOptions): Core.APIPromise<Response>;
}
export interface DownloadGetParams {
/**
* unique identifier linked to an account in the API request path
*/
account_id: string;
}
export declare namespace Downloads {
export { type DownloadGetParams as DownloadGetParams };
}
//# sourceMappingURL=downloads.d.ts.map