interface IContextHolder {
    context?: IActionContext;
    contextMergeHandlers: Record<string, IBindingsContextMergeHandler<any>>;
}

Properties

context?: IActionContext
contextMergeHandlers: Record<string, IBindingsContextMergeHandler<any>>