@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
27 lines (26 loc) • 852 B
TypeScript
import { ScanditHTMLElement } from "@scandit/web-datacapture-core/build/js/private/utils/index.js";
//#region src/main/find/ui/molecules/ProgressBarWithLabel.d.ts
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;
}
}
//#endregion
export { ProgressBarWithLabel };