@scandit/web-datacapture-core
Version:
Scandit Data Capture SDK for the Web
18 lines (15 loc) • 483 B
TypeScript
/// <reference types="emscripten" />
import { SvgIcon } from './SvgIcon.js';
import '../../utils/ScanditHTMLElement.js';
declare class StarHalfFilledSvgIcon extends SvgIcon {
static tag: "scandit-half-star-icon";
static create(): StarHalfFilledSvgIcon;
static register(): void;
protected render(): string;
}
declare global {
interface HTMLElementTagNameMap {
[]: StarHalfFilledSvgIcon;
}
}
export { StarHalfFilledSvgIcon };