@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
20 lines (19 loc) • 598 B
TypeScript
import { BaseAPI } from '../../../common/BaseAPI';
import Configuration from '../../../common/Configuration';
import ManifestTypeResponse from '../../../models/ManifestTypeResponse';
/**
* TypeApi - object-oriented interface
* @export
* @class TypeApi
* @extends {BaseAPI}
*/
export default class TypeApi extends BaseAPI {
constructor(configuration: Configuration);
/**
* @summary Get Manifest Type
* @param {string} manifestId UUID of the manifest
* @throws {BitmovinError}
* @memberof TypeApi
*/
get(manifestId: string): Promise<ManifestTypeResponse>;
}