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

, ): Promise>; show( projectId: string | number, issueIId: number, labelEventId: number, options?: Sudo & ShowExpanded, ): Promise>; } export class IssueLabelEvents extends ResourceLabelEvents { constructor(options: BaseResourceOptions) { /* istanbul ignore next */ super('projects', 'issues', options); } }