Sha256: 4c54e5165347e31f842b47ff3545e7615fd59f761d21de10d4c77520b216949a
Contents?: true
Size: 424 Bytes
Versions: 92
Compression:
Stored size: 424 Bytes
Contents
/** * Virtual DOM Node * @typedef VNode * @property {string | function} nodeName The string of the DOM node to create or Component constructor to render * @property {Array<VNode | string>} children The children of node * @property {string | number | undefined} key The key used to identify this VNode in a list * @property {object} attributes The properties of this VNode */ export const VNode = function VNode() {};
Version data entries
92 entries across 92 versions & 1 rubygems