@jupyter/web-components
Version:
A component library for building extensions in Jupyter frontends.
22 lines (21 loc) • 964 B
TypeScript
import { BaseProgress, ProgressOptions } from '@microsoft/fast-foundation';
import { progressStyles as styles } from './progress.styles.js';
/**
* Progress bar class
*
* @public
* @tagname jp-progress
*/
declare class JupyterProgress extends BaseProgress {
}
/**
* 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>>;
export { JupyterProgress as Progress, styles as progressStyles };