UNPKG

@moveflow/widget

Version:

> ⚠️ **This is a testnet version** of the MoveFlow Checkout Widget. It is intended for development and testing purposes only. Do not use for mainnet payments.

13 lines (12 loc) 296 B
declare global { interface Window { aptos: any; martian: any; } } import React from "react"; interface AptosWalletProps { children?: React.ReactNode; } export default function Wallet({ children }: AptosWalletProps): import("react/jsx-runtime").JSX.Element; export {};