UNPKG

decent-sdk

Version:

SDK for the Decent API

7 lines (6 loc) 320 B
import React, { PropsWithChildren } from 'react'; export type DecentApiContextData = { apiUrl: string; }; export declare const DecentApiContext: React.Context<DecentApiContextData>; export declare function DecentApiProvider({ apiUrl, children }: PropsWithChildren<Partial<DecentApiContextData>>): React.JSX.Element;