UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

19 lines 629 B
import { APIResource } from "../../../../resource.js"; import * as Core from "../../../../core.js"; export declare class Vtt extends APIResource { /** * Return WebVTT captions for a provided language. */ get(identifier: string, language: string, params: VttGetParams, options?: Core.RequestOptions): Core.APIPromise<string>; } export type VttGetResponse = string; export interface VttGetParams { /** * Identifier */ account_id: string; } export declare namespace Vtt { export { type VttGetResponse as VttGetResponse, type VttGetParams as VttGetParams }; } //# sourceMappingURL=vtt.d.ts.map