1 | import { ProgressBar } from './progress-bar';
|
2 | export declare const ProgressBarFactory: unique symbol;
|
3 | export interface ProgressBarFactory {
|
4 | (options: ProgressBarOptions): ProgressBar;
|
5 | }
|
6 | export declare const ProgressBarOptions: unique symbol;
|
7 | export interface ProgressBarOptions {
|
8 | locationId: string;
|
9 | container: HTMLElement;
|
10 | insertMode: 'append' | 'prepend';
|
11 | }
|
12 | //# sourceMappingURL=progress-bar-factory.d.ts.map |
\ | No newline at end of file |