@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
8 lines (7 loc) • 316 B
TypeScript
import React from 'react';
interface GlobalWalletScannerProps {
jsQR: (data: Uint8ClampedArray, width: number, height: number, providedOptions?: any) => any;
onScan: (result: string) => void;
}
export declare const GlobalWalletScanner: React.FC<GlobalWalletScannerProps>;
export default GlobalWalletScanner;