/** * The class name contract for the tree view item component */ export interface TreeViewItemClassNameContract { /** * The root of the tree view item component */ treeViewItem?: string; /** * The content region for the tree view item */ treeViewItem_contentRegion?: string; /** * The inner content region for the tree view item */ treeViewItem_innerContentRegion?: string; /** * The tree view item expand/collapse button */ treeViewItem_expandCollapseButton?: string; /** * The tree view item expand/collapse glyph */ treeViewItem_expandCollapseGlyph?: string; /** * The tree view item child node region */ treeViewItem_childNodeRegion?: string; /** * The expanded modifier for the tree view item */ treeViewItem__expanded?: string; /** * The selected modifier for the tree view item */ treeViewItem__selected?: string; /** * The nested modifier for the tree view item */ treeViewItem__nested?: string; }