UNPKG

@mojito-inc/secondary-market

Version:

Mojito secondary market is the platform to purchase NFT.

19 lines (18 loc) 645 B
import { Theme } from '@mui/material/styles'; import { BrowserOptions } from '@sentry/react'; export interface ApolloClientOptions { uri?: string; token?: string; } export interface SentryConfig { isEnableSentry?: boolean; config?: BrowserOptions; } interface SecondaryThemeProviderProps { children: JSX.Element | JSX.Element[]; theme: Theme; clientOptions: ApolloClientOptions; sentryConfig?: SentryConfig; } declare const SecondaryMarketProvider: ({ children, theme, clientOptions, sentryConfig }: SecondaryThemeProviderProps) => import("react/jsx-runtime").JSX.Element; export default SecondaryMarketProvider;