UNPKG

@builder.io/mitosis

Version:

Write components once, run everywhere. Compiles to Vue, React, Solid, and Liquid. Import code from Figma and Builder.io

14 lines (13 loc) 500 B
export type JSONPrimitive = string | null | number | boolean | undefined; export type JSONObject = { [key: string]: _JSON | undefined; }; /** * We use an underscore to avoid collisions with the global `JSON` primitive type. */ export type _JSON = JSONPrimitive | JSONObject | _JSON[]; export type JSONPrimitiveOrNode = JSONPrimitive | babel.Node; export type JSONOrNodeObject = { [key: string]: JSONOrNode; }; export type JSONOrNode = JSONPrimitiveOrNode | JSONOrNodeObject | JSONOrNode[];