import type { BaseResourceOptions } from '@gitbeaker/requester-utils'; import { ResourceCustomAttributes } from '../templates'; import type { CustomAttributeSchema } from '../templates/ResourceCustomAttributes'; import type { GitlabAPIResponse, PaginationRequestOptions, PaginationTypes, ShowExpanded, Sudo, } from '../infrastructure'; export interface UserCustomAttributes extends ResourceCustomAttributes { all( userId: string | number, options?: PaginationRequestOptions

& Sudo & ShowExpanded, ): Promise>; remove( userId: string | number, customAttributeId: string, options?: Sudo, ): Promise>; set( userId: string | number, customAttributeId: string, value: string, options?: Sudo & ShowExpanded, ): Promise>; show( userId: string | number, customAttributeId: string, options?: Sudo & ShowExpanded, ): Promise>; } export class UserCustomAttributes extends ResourceCustomAttributes { constructor(options: BaseResourceOptions) { /* istanbul ignore next */ super('users', options); } }