@putdotio/api-client
Version:
JavaScript SDK for interacting with the put.io API.
15 lines (14 loc) • 403 B
TypeScript
export interface IDownloadLinksCreateResponse {
id: number;
}
export interface IDownloadLinksInfoResponse {
links: IDownloadLinks;
links_status: DownloadLinksStatuses;
}
interface IDownloadLinks {
download_links: string[];
mp4_links: string[];
media_links: string[];
}
export declare type DownloadLinksStatuses = 'NEW' | 'PROCESSING' | 'DONE' | 'ERROR';
export {};