Skip to content

CallbackArgument

Qamsari edited this page Jul 26, 2021 · 2 revisions

Base Type for all object that send to callback method from rendering context. this callback define by user for BasisCore command component for manage rendering process notify of some event happen.

export declare type CallbackArgument = {
  context: IContext;
  node: Node;
};

properties:

  • context
    Determine rendering context. for more information, visit IContext
  • node
    Component related Html Node.

Clone this wiki locally