@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
23 lines (22 loc) • 955 B
TypeScript
import { TreeItem, TreeItemOptions } from '@microsoft/fast-foundation';
import { treeItemStyles as styles } from './tree-item.styles.js';
/**
* Tree item class
*
* @public
* @tagname jp-tree-item
*/
declare class JupyterTreeItem extends TreeItem {
}
/**
* 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>>;
export { JupyterTreeItem as TreeItem, styles as treeItemStyles };