Type alias ParseElement

ParseElement: {
    index: number;
    type: "array";
} | {
    key: string;
    type: "object";
}

An element in the expression parse tree, used to assist error messaging.

Type declaration

  • index: number
  • type: "array"

Type declaration

  • key: string
  • type: "object"

Generated using TypeDoc