2023-11-05 23:33:40 +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
|
|
|
|
2023-07-13 18:59:23 +00:00
|
|
|
export type PrivilegeWithoutPrice = Omit<PrivilegeWithAmount, "price">;
|