UNPKG

azure-devops-ui

Version:

React components for building web UI in Azure DevOps

17 lines (16 loc) 683 B
import "../../CommonImports"; import "../../Core/core.css"; import "./Tree.css"; import "./TreeExpand.css"; import * as React from "react"; import { IFixedHeightListMaterializedStats } from '../../List'; import { IFixedHeightTree, IFixedHeightTreeProps } from "./FixedHeightTree.Props"; export declare class FixedHeightTree<T> extends React.Component<IFixedHeightTreeProps<T>> implements IFixedHeightTree<T> { private list; render(): JSX.Element; getFocusIndex(): number; getStats(): IFixedHeightListMaterializedStats; scrollIntoView(rowIndex: number, options?: ScrollIntoViewOptions): void; private onActivateExpand; private renderRow; }