UNPKG

252 BTypeScriptView Raw
1export interface UserInterface {
2 isGuest: () => boolean;
3 isMemberOf: (groups: string | Array<string>) => boolean;
4}
5export declare class AnonymousUser implements UserInterface {
6 isGuest(): boolean;
7 isMemberOf(group: string): boolean;
8}