UNPKG

raindancers-network

Version:
15 lines (14 loc) 301 B
export declare enum PrincipalTypes { USER = "USER", GROUP = "GROUP" } export interface PrincipalProperty { /** * The id of the principal. */ readonly principalId: string; /** * The type of the principal. */ readonly principalType: PrincipalTypes; }