@vscode/webview-ui-toolkit
Version:
A component library for building webview-based extensions in Visual Studio Code.
25 lines (24 loc) • 779 B
TypeScript
import { Badge as FoundationBadge, FoundationElementDefinition } from '@microsoft/fast-foundation';
/**
* The Visual Studio Code tag class.
*
* @public
*/
export declare class Tag extends FoundationBadge {
/**
* Component lifecycle method that runs when the component is inserted
* into the DOM.
*
* @internal
*/
connectedCallback(): void;
}
/**
* The Visual Studio Code tag component registration.
*
* @remarks
* HTML Element: `<vscode-tag>`
*
* @public
*/
export declare const vsCodeTag: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<FoundationElementDefinition> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<FoundationElementDefinition, typeof Tag>;