UNPKG

@funkit/connect

Version:

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

16 lines (15 loc) 585 B
import React from 'react'; export interface HealthFactorInfo { /** Current health factor (decimal string), or `null` when unavailable. */ before: string | null; /** Projected health factor after the supply (decimal string), or `null`. */ after: string | null; isLoading: boolean; } /** * Health factor (`before → after`) for an Aave supply — the preview the native * fast-path lost by skipping confirmation. */ export declare function DestinationHealthFactorRow({ healthFactorInfo, }: { healthFactorInfo?: HealthFactorInfo; }): React.JSX.Element | null;