UNPKG

@ree-network/ts-sdk

Version:

An SDK for building applications on top of REE Network

12 lines (11 loc) 335 B
import React, { ReactNode } from "react"; import { REEClient } from "./client"; interface REEContextType { client: REEClient | undefined; } interface REEProviderProps { children: ReactNode; } export declare const REEProvider: React.FC<REEProviderProps>; export declare const useREE: () => REEContextType; export {};