cloudflare
Version:
The official TypeScript library for the Cloudflare API
14 lines • 570 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from 'cloudflare/resource';
export class Clip extends APIResource {
/**
* Clips a video based on the specified start and end times provided in seconds.
*/
create(params, options) {
const { account_id, ...body } = params;
return this._client.post(`/accounts/${account_id}/stream/clip`, { body, ...options })._thenUnwrap((obj) => obj.result);
}
}
(function (Clip) {
})(Clip || (Clip = {}));
//# sourceMappingURL=clip.mjs.map