UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

10 lines (9 loc) 362 B
import React from 'react'; import { type PropsWithChildren } from 'react'; interface UserPresence { isAway: boolean; } export declare const UserPresenceContext: React.Context<UserPresence>; export declare const UserPresenceProvider: ({ children }: PropsWithChildren) => React.JSX.Element; export declare const useUserPresence: () => UserPresence; export {};