/** * @file src/vod/PresetGroup.ts * @author leeight */ import BceBaseClient from '../bce_base_client'; import type { BceResponse } from '../types/common'; import type { VodClientConfig, PresetGroup } from './types'; /** * 转码预设组接口 */ export default class PresetGroupClient extends BceBaseClient { constructor(config: VodClientConfig); private _buildUrl; list(): Promise>; get(name: string): Promise>; } //# sourceMappingURL=PresetGroup.d.ts.map