@cygnus-wealth/wallet-integration-system
Version:
Multi-chain wallet integration system for CygnusWealth
16 lines • 481 B
TypeScript
export {};
declare global {
interface Window {
ethereum?: {
isMetaMask?: boolean;
isRabby?: boolean;
request: (args: {
method: string;
params?: any[];
}) => Promise<any>;
on: (event: string, handler: (...args: any[]) => void) => void;
removeListener: (event: string, handler: (...args: any[]) => void) => void;
};
}
}
//# sourceMappingURL=types.d.ts.map