UNPKG

@coin-voyage/paykit

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

10 lines (9 loc) 387 B
import { APIEnvironment } from "@coin-voyage/shared/api"; import { PropsWithChildren } from "react"; export type ApiProviderProps = { apiKey: string; environment?: APIEnvironment; sessionId?: string; version?: string; }; export declare function ApiProvider({ apiKey, environment, children }: PropsWithChildren<ApiProviderProps>): import("react/jsx-runtime").JSX.Element;