@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
18 lines (17 loc) • 555 B
TypeScript
import { ScanditHTMLElement } from "@scandit/web-datacapture-core/build/js/private/utils/index.js";
//#region src/main/find/ui/atoms/CardListButton.d.ts
declare class CardListButton extends ScanditHTMLElement {
static tag: "scandit-find-card-list-button";
constructor();
connectedCallback(): Promise<void>;
static create(): CardListButton;
static register(): void;
private static createStyleElement;
}
declare global {
interface HTMLElementTagNameMap {
[CardListButton.tag]: CardListButton;
}
}
//#endregion
export { CardListButton };