front-hub/src/model/privilege.ts
2023-11-06 02:48:07 +03:00

7 lines
209 B
TypeScript

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