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

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