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