2024-03-27 10:53:47 +00:00
|
|
|
import { Privilege } from "@frontend/kitui";
|
2024-01-03 19:41:41 +00:00
|
|
|
|
|
|
|
export type ServiceKeyToPrivilegesMap = Record<string, Privilege[]>;
|
|
|
|
|
2024-03-27 10:53:47 +00:00
|
|
|
export type PrivilegeWithoutPrice = Omit<Privilege, "price">;
|