import { EntityDict } from '../general-app-domain'; export interface RuntimeContext { getApplicationId(): string | undefined; getSystemId(): string | undefined; getApplication(): Partial | undefined; getToken(allowUnloggedIn?: boolean): Partial | undefined; getTokenValue(allowUnloggedIn?: boolean): string | undefined; isRoot(): boolean; }