UNPKG

@broxus/tvm-connect

Version:

TypeScript SDK for connecting to Nekoton-compatible wallets using a unified interface.

11 lines (10 loc) 415 B
import * as React from 'react'; import { type PopupType } from '../types'; export interface SharedParamsContextConsumer { agreementsNote?: React.ReactNode | false; popupType?: PopupType; qrEnabled?: boolean; recentMetaStorageKey?: string; } export declare const SharedParamsContext: React.Context<SharedParamsContextConsumer>; export declare function useSharedParams(): SharedParamsContextConsumer;