@jupyter-notebook/web-components
Version:
A component library for building extensions in Jupyter frontends.
20 lines (19 loc) • 873 B
TypeScript
import { TreeItem, TreeItemOptions } from '@microsoft/fast-foundation';
import { treeItemStyles as styles } from './tree-item.styles';
/**
* A function that returns a {@link @microsoft/fast-foundation#TreeItem} registration for configuring the component with a DesignSystem.
* Implements {@link @microsoft/fast-foundation#treeItemTemplate}
*
*
* @public
* @remarks
* Generates HTML Element: `<jp-tree-item>`
*
*/
export declare const jpTreeItem: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<TreeItemOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<TreeItemOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>;
/**
* Base class for TreeItem
* @public
*/
export { TreeItem };
export { styles as treeItemStyles };