@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 446 B
TypeScript
import { Dispatch, ReactNode, SetStateAction } from 'react';
type LoadingContextProps = {
loading: boolean;
setLoading: Dispatch<SetStateAction<boolean>>;
};
export declare const LoadingContext: import("react").Context<LoadingContextProps | undefined>;
export declare const LoadingContextProvider: ({ children, }: {
children: ReactNode;
}) => JSX.Element;
export declare const useLoadingContext: () => LoadingContextProps;
export {};