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