ui-lit
Version:
UI Elements on LIT
19 lines (18 loc) • 460 B
TypeScript
import { LitElement } from 'lit';
export interface IQRCodeProps {
value: string;
}
export declare class LitQRCode extends LitElement {
canvas: HTMLCanvasElement;
static styles: import("lit").CSSResult;
value: string;
width: number;
private _setQRCode;
updated(): void;
render(): import("lit").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'lit-qrcode': LitQRCode;
}
}