hashbrown

ComponentNode

API

export type ComponentNode = {
  [tagName: string]: {
    props?: {
      complete: boolean;
      partialValue:  JsonResolvedValue ;
      value?:  Record <
        string,
         JsonValue 
      >;
    };
    children?:  ComponentNode [] | string;
  };
};