import type { BaseResourceOptions } from '@gitbeaker/requester-utils'; import { ResourceLabelEvents } from '../templates'; import type { LabelEventSchema } from '../templates/ResourceLabelEvents'; import type { BaseRequestOptions, GitlabAPIResponse, PaginationRequestOptions, PaginationTypes, ShowExpanded, Sudo, } from '../infrastructure'; export interface EpicLabelEvents { all( groupId: string | number, epidId: number, options?: BaseRequestOptions & PaginationRequestOptions

, ): Promise>; show( groupId: string | number, epidId: number, labelEventId: number, options?: Sudo & ShowExpanded, ): Promise>; } export class EpicLabelEvents extends ResourceLabelEvents { constructor(options: BaseResourceOptions) { /* istanbul ignore next */ super('groups', 'epics', options); } }