/** @packageDocumentation * @module PresentationRules */ import { RuleTypes } from "../Rule"; import { NavigationRuleBase } from "./NavigationRule"; /** * Root node rules define the nodes that are displayed * at the root hierarchy level. * * @see [More details]($docs/learning/presentation/Hierarchies/RootNodeRule.md) * @public */ export interface RootNodeRule extends NavigationRuleBase { /** Used for serializing to JSON. */ ruleType: RuleTypes.RootNodes; /** Automatically expand nodes created by this rule. */ autoExpand?: boolean; } //# sourceMappingURL=RootNodeRule.d.ts.map