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