@huggingface/hub
Version:
Utilities to interact with the Hugging Face hub
17 lines • 590 B
TypeScript
import type { CredentialsParams } from "../../types/public";
import type { ApiScheduledJob } from "../../types/api/api-jobs";
/**
* List scheduled jobs for a namespace.
*/
export declare function listScheduledJobs(params: {
/**
* The namespace (username or organization name)
*/
namespace: 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<ApiScheduledJob[]>;
//# sourceMappingURL=list-scheduled-jobs.d.ts.map