@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
27 lines (24 loc) • 816 B
TypeScript
import { ScanditHTMLElement } from '@scandit/web-datacapture-core/build/js/private/utils/index.js';
declare class ProgressBarWithLabel extends ScanditHTMLElement {
static tag: "scandit-find-progress-bar-with-label";
static observedAttributes: string[];
constructor();
get value(): number;
set value(value: number);
get max(): number;
set max(n: number);
private get progressBar();
private get label();
static create(): ProgressBarWithLabel;
static register(): void;
private static createStyleElement;
protected connectedCallback(): void;
protected attributeChangedCallback(): void;
private render;
}
declare global {
interface HTMLElementTagNameMap {
[]: ProgressBarWithLabel;
}
}
export { ProgressBarWithLabel };