UNPKG

@multiversx/sdk-dapp-swap

Version:

A library to hold the main logic for swapping between tokens on the MultiversX blockchain

10 lines 483 B
/// <reference types="react" /> import { ApolloClient, NormalizedCacheObject } from '@apollo/client'; export declare type AuthorizationContextType = { accessToken?: string; isAuthenticated?: boolean; client?: ApolloClient<NormalizedCacheObject>; }; export declare const AuthorizationContext: import("react").Context<AuthorizationContextType>; export declare const useAuthorizationContext: () => AuthorizationContextType; //# sourceMappingURL=AuthorizationContext.d.ts.map