@scandit/web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
19 lines (18 loc) • 631 B
TypeScript
import { ScanditHTMLElement } from "@scandit/web-datacapture-core/build/js/private/utils/index.js";
//#region src/main/find/ui/molecules/ImageAndTextCardLayout.d.ts
declare class ImageAndTextCardLayout extends ScanditHTMLElement {
static tag: "scandit-image-and-text-card-layout";
constructor();
set title(text: string);
set subtitle(text: string);
static create(): ImageAndTextCardLayout;
static register(): void;
private static createStyleElement;
}
declare global {
interface HTMLElementTagNameMap {
[ImageAndTextCardLayout.tag]: ImageAndTextCardLayout;
}
}
//#endregion
export { ImageAndTextCardLayout };