@safe-global/safe-react-hooks
Version:
A collection of React Hooks that facilitates the interaction of React apps with Safe Smart Accounts
6 lines (5 loc) • 320 B
TypeScript
import type { SafeConfig } from './types/index.js';
export type SafeProviderProps = {
config: SafeConfig;
};
export declare function SafeProvider(params: React.PropsWithChildren<SafeProviderProps>): import("react").FunctionComponentElement<import("react").ProviderProps<import("./SafeContext.js").SafeContextType>>;