UNPKG

@jupyter-notebook/web-components

Version:

A component library for building extensions in Jupyter frontends.

19 lines (18 loc) 897 B
import { BaseProgress as Progress, ProgressOptions } from '@microsoft/fast-foundation'; import { progressStyles as styles } from '@microsoft/fast-components'; /** * A function that returns a {@link @microsoft/fast-foundation#BaseProgress} registration for configuring the component with a DesignSystem. * Implements {@link @microsoft/fast-foundation#progressTemplate} * * * @public * @remarks * Generates HTML Element: `<jp-progress>` */ export declare const jpProgress: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<ProgressOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<ProgressOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>; /** * Base class for Progress * @public */ export { Progress }; export { styles as progressStyles };