@jupyter-notebook/web-components
Version:
A component library for building extensions in Jupyter frontends.
28 lines (27 loc) • 1.59 kB
TypeScript
import { TreeView } from '@microsoft/fast-foundation';
import { treeViewStyles as styles } from '@microsoft/fast-components';
/**
* A function that returns a {@link @microsoft/fast-foundation#TreeView} registration for configuring the component with a DesignSystem.
* Implements {@link @microsoft/fast-foundation#treeViewTemplate}
*
*
* @public
* @remarks
* Generates HTML Element: `<jp-tree-view>`
*
*/
export declare const jpTreeView: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
baseName: string;
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<TreeView, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>;
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").FoundationElementDefinition>;
}> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
baseName: string;
template: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ViewTemplate<TreeView, any>, import("@microsoft/fast-foundation").FoundationElementDefinition>;
styles: import("@microsoft/fast-foundation").FoundationElementTemplate<import("@microsoft/fast-element").ElementStyles, import("@microsoft/fast-foundation").FoundationElementDefinition>;
}, typeof TreeView>;
/**
* Base class for TreeView
* @public
*/
export { TreeView };
export { styles as treeViewStyles };