import { BaseResource } from '@gitbeaker/requester-utils'; import { RequestHelper } from '../infrastructure'; import type { GitlabAPIResponse, ShowExpanded, Sudo } from '../infrastructure'; export class DependencyProxy extends BaseResource { remove( groupId: string | number, options?: Sudo & ShowExpanded, ): Promise> { return RequestHelper.post()(this, `groups/${groupId}/dependency_proxy/cache`, options); } }