UNPKG

@jupyter-notebook/web-components

Version:

A component library for building extensions in Jupyter frontends.

19 lines (18 loc) 942 B
import { BaseProgress as ProgressRing, ProgressRingOptions } from '@microsoft/fast-foundation'; import { progressRingStyles 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#progressRingTemplate} * * * @public * @remarks * Generates HTML Element: `<jp-progress-ring>` */ export declare const jpProgressRing: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<ProgressRingOptions> | undefined) => import("@microsoft/fast-foundation").FoundationElementRegistry<ProgressRingOptions, import("@microsoft/fast-element").Constructable<import("@microsoft/fast-foundation").FoundationElement>>; /** * Base class for ProgressRing * @public */ export { ProgressRing }; export { styles as progressRingStyles };