UNPKG

@chipi-stack/nextjs

Version:

Chipi SDK for Next.js applications with server-side support

16 lines (13 loc) 560 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import React from 'react'; interface ChipiProviderProps { children: React.ReactNode; apiPublicKey?: string; environment?: 'development' | 'production'; } /** * This is a compatibility layer that provides a client-only ChipiProvider. * This is used when the conditional export resolves to the client boundary. */ declare function ChipiProvider({ children, apiPublicKey, environment }: ChipiProviderProps): react_jsx_runtime.JSX.Element; export { ChipiProvider, type ChipiProviderProps };