@itwin/presentation-common
Version:
Common pieces for iModel.js presentation packages
17 lines • 647 B
TypeScript
/** @packageDocumentation
* @module PresentationRules
*/
import { NavigationRuleBase } from "./NavigationRule.js";
/**
* Root node rules are used to define nodes that are displayed at the root hierarchy level.
*
* @see [Root node rule reference documentation page]($docs/presentation/hierarchies/RootNodeRule.md)
* @public
*/
export interface RootNodeRule extends NavigationRuleBase {
/** Used for serializing to JSON. */
ruleType: "RootNodes";
/** Tells the library to assign produced nodes a flag, indicating that they should be automatically expanded. */
autoExpand?: boolean;
}
//# sourceMappingURL=RootNodeRule.d.ts.map