front-hub/src/model/privilege.ts

7 lines
210 B
TypeScript
Raw Normal View History

2023-08-07 15:59:37 +00:00
import { Privilege, PrivilegeWithAmount } from "@frontend/kitui";
2023-06-11 10:07:47 +00:00
2023-08-07 15:59:37 +00:00
export type ServiceKeyToPrivilegesMap = Record<string, Privilege[]>;
2023-06-20 10:12:50 +00:00
export type PrivilegeWithoutPrice = Omit<PrivilegeWithAmount, "price">;