@scandit/web-datacapture-core
Version:
Scandit Data Capture SDK for the Web
28 lines (25 loc) • 764 B
TypeScript
/// <reference types="emscripten" />
import { Color } from '../../../commons/Color.js';
import { ScanditHTMLElement } from '../../utils/ScanditHTMLElement.js';
import '../../Serializable.js';
declare class Card extends ScanditHTMLElement {
static tag: "scandit-basic-card";
constructor();
set haloGlow(active: boolean);
get haloGlow(): boolean;
set border(active: boolean);
get border(): boolean;
set backgroundColor(color: Color);
get backgroundColor(): Color;
set borderColor(color: Color);
get borderColor(): Color;
static create(): Card;
static register(): void;
private static createStyleElement;
}
declare global {
interface HTMLElementTagNameMap {
[Card.tag]: Card;
}
}
export { Card };