UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

7 lines (6 loc) 342 B
import { FC, PropsWithChildren } from 'react'; type WidgetType = 'user-profile'; export declare const WidgetRegistryContextProvider: FC<PropsWithChildren>; export declare const useRegisterWidget: (widgetType: WidgetType, enabled?: boolean) => void; export declare const useWidgetRegistryCheck: (widgetType: WidgetType) => boolean; export {};