UNPKG

@hot-labs/near-connect

Version:

![ezgif-26d74832f88c3c](https://github.com/user-attachments/assets/c4422057-38bb-4cd9-8bd0-568e29f46280)

29 lines (28 loc) 1.07 kB
import { FooterBranding, WalletManifest } from "../types"; import { Popup } from "./Popup"; export declare class NearWalletsPopup extends Popup<{ wallets: WalletManifest[]; showSettings: boolean; }> { readonly delegate: { wallets: WalletManifest[]; footer: FooterBranding | null; onAddDebugManifest: (wallet: string) => Promise<WalletManifest>; onRemoveDebugManifest: (id: string) => Promise<void>; onSelect: (id: string) => void; onReject: () => void; }; constructor(delegate: { wallets: WalletManifest[]; footer: FooterBranding | null; onAddDebugManifest: (wallet: string) => Promise<WalletManifest>; onRemoveDebugManifest: (id: string) => Promise<void>; onSelect: (id: string) => void; onReject: () => void; }); handlers(): void; create(): void; walletDom(wallet: WalletManifest): import("../helpers/html").HtmlString; get footer(): import("../helpers/html").HtmlString | ""; get dom(): import("../helpers/html").HtmlString; }