export interface MetaContract { user: any; roles: string[]; permissions: string[]; } export interface ContextContract { userId: string; clientId: string; workspaceId: string; } export type ControlValueType = string[]; export type ControlValueTypes = ControlValueType | string[] | string | null | undefined;