frontPanel/src/model/privilege.ts

6 lines
209 B
TypeScript
Raw Normal View History

import { Privilege, PrivilegeWithAmount } from "@frontend/kitui";
export type ServiceKeyToPrivilegesMap = Record<string, Privilege[]>;
export type PrivilegeWithoutPrice = Omit<PrivilegeWithAmount, "price">;