UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

7 lines (6 loc) 208 B
export type StoreAuthTokenProps = { jwt?: string; minifiedJwt?: string; expiresAt: number; }; export declare const storeAuthToken: ({ jwt, minifiedJwt, expiresAt, }: StoreAuthTokenProps) => void;