@scandit/web-datacapture-core
Version:
Scandit Data Capture SDK for the Web
24 lines (21 loc) • 633 B
TypeScript
/// <reference types="emscripten" />
import { Color } from '../../../Common.js';
import { ScanditHTMLElement } from '../../utils/ScanditHTMLElement.js';
import '../../Serializable.js';
declare class Card extends ScanditHTMLElement {
static tag: "scandit-basic-card";
constructor();
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;
}
}
export { Card };