@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
26 lines (25 loc) • 990 B
TypeScript
import { Color, ScanditIcon } from "@scandit/web-datacapture-core";
import { ScanditHTMLElement as ScanditHTMLElement$1 } from "@scandit/web-datacapture-core/build/js/private/utils/index.js";
//#region src/main/ar/ui/organisms/BarcodeArPopoverAnnotationButton.d.ts
declare class BarcodeArPopoverAnnotationButton extends ScanditHTMLElement$1 {
static tag: "scandit-barcode-ar-popover-button-annotation";
private containerElement;
constructor();
set textSize(size: number);
get textSize(): number;
set textColor(color: Color);
get textColor(): Color;
get text(): string;
set disabled(value: boolean);
get disabled(): boolean;
private static register;
static create(icon: ScanditIcon, text?: string): BarcodeArPopoverAnnotationButton;
private static createStyleElement;
}
declare global {
interface HTMLElementTagNameMap {
[BarcodeArPopoverAnnotationButton.tag]: BarcodeArPopoverAnnotationButton;
}
}
//#endregion
export { BarcodeArPopoverAnnotationButton };