UNPKG

@huggingface/hub

Version:

Utilities to interact with the Hugging Face hub

20 lines 564 B
import type { CredentialsParams } from "../../types/public"; /** * Delete a scheduled job. */ export declare function deleteScheduledJob(params: { /** * The namespace (username or organization name) */ namespace: string; /** * The scheduled job ID */ jobId: string; hubUrl?: string; /** * Custom fetch function to use instead of the default one, for example to use a proxy or edit headers. */ fetch?: typeof fetch; } & CredentialsParams): Promise<void>; //# sourceMappingURL=delete-scheduled-job.d.ts.map