import { CommonAspectDict } from "oak-common-aspect"; import { AspectDict as GeneralAspectDict } from "../aspects/AspectDict"; import { BackendRuntimeContext } from "../context/BackendRuntimeContext"; import { FrontendRuntimeContext } from "../context/FrontendRuntimeContext"; import { EntityDict } from "../general-app-domain"; export declare type BRC = BackendRuntimeContext; export declare type FrcAspectDict = GeneralAspectDict & CommonAspectDict; export declare type FRC = FrontendRuntimeContext; export declare type RuntimeCxt = FRC | BRC;