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