UNPKG

aura-get-verified

Version:
27 lines (23 loc) 727 B
import * as lit_html from 'lit-html'; import { LitElement } from 'lit'; declare class IFramePorjectVerification extends LitElement { height: number; projectId?: number; level?: number; projectName?: string; description?: string; image?: string; foregroundColor: string; protected iframeElement: null | HTMLIFrameElement; connectedCallback(): void; disconnectedCallback(): void; onIframeLoad(): void; protected onWindowMessage(e: MessageEvent<any>): void; protected render(): lit_html.TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'iframe-project-verification': IFramePorjectVerification; } } export { IFramePorjectVerification };