UNPKG

@lifi/widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

9 lines (8 loc) 453 B
import type { Route } from '@lifi/sdk'; interface IntermediateRoutesState { intermediateRoutes: Record<string, Route[] | undefined>; setIntermediateRoutes: (key: readonly unknown[], routes: Route[] | undefined) => void; getIntermediateRoutes: (key: readonly unknown[]) => Route[] | undefined; } export declare const useIntermediateRoutesStore: import("zustand").UseBoundStore<import("zustand").StoreApi<IntermediateRoutesState>>; export {};