UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

11 lines (10 loc) 495 B
import { ResolvedUserType, UserType, GuidValue } from "../../models"; export declare class UserTypeService { private httpClient; getAll: () => Promise<UserType[]>; inUse: (userTypeId: GuidValue) => Promise<boolean>; resolve: (userTypes: UserType[]) => Promise<ResolvedUserType[]>; addOrUpdate: (resolvedUserType: ResolvedUserType) => Promise<ResolvedUserType>; reorder: (userTypes: UserType[]) => Promise<UserType[]>; delete: (userType: UserType) => Promise<void>; }