import {ChildNodeProps} from "./ChildNodeProps"; /** * Collection of child node properties, in the context of a structure node's * definition, indexed by the children's names. * @see StructureNodeDef */ export type ChildNodesProps = { [N in keyof C]: ChildNodeProps; }