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