UNPKG

@scandit/web-datacapture-core

Version:

Scandit Data Capture SDK for the Web

20 lines (17 loc) 514 B
/// <reference types="emscripten" /> import { ScanditHTMLElement } from '../../utils/ScanditHTMLElement.js'; declare const tag = "scandit-arrows-up"; declare class ArrowsUp extends ScanditHTMLElement { static readonly tag: typeof tag; constructor(); static createStyleElement(): HTMLStyleElement; static create(): ArrowsUp; static register(): void; protected render(): string; } declare global { interface HTMLElementTagNameMap { [tag]: ArrowsUp; } } export { ArrowsUp };