@trilitech-umami/umami-embed
Version:
[WIP - not ready for production use] A simple embeddable Umami wallet
12 lines (11 loc) • 324 B
TypeScript
import type { RequestMessage } from "./types";
export declare class UmamiIframe {
private iframe;
private iframeUrl;
get isInitialized(): boolean;
init(iframeParent: HTMLElement, iframeUrl: string): void;
destroy(): void;
show(): void;
hide(): void;
request(message: RequestMessage): void;
}