UNPKG

@itwin/presentation-common

Version:

Common pieces for iModel.js presentation packages

15 lines 484 B
/** @packageDocumentation * @module PresentationRules */ import { NavigationRuleBase } from "./NavigationRule.js"; /** * Child node rules are used to define child nodes in a hierarchy. * * @see [Child node rule reference documentation page]($docs/presentation/hierarchies/ChildNodeRule.md) * @public */ export interface ChildNodeRule extends NavigationRuleBase { /** Used for serializing to JSON. */ ruleType: "ChildNodes"; } //# sourceMappingURL=ChildNodeRule.d.ts.map