UNPKG

@funkit/connect

Version:

Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.

11 lines (10 loc) 371 B
import { PaymentMethod } from '../domains/paymentMethods'; interface GetIsRelayEnabledParams { paymentMethod: PaymentMethod | undefined; isAdditionalActionsRequired: boolean; } export interface UseRelayBypassReturn { getIsRelayEnabled: (params: GetIsRelayEnabledParams) => boolean; } export declare function useRelayBypass(): UseRelayBypassReturn; export {};