13 lines
213 B
TypeScript
13 lines
213 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
import type { EIP1193Provider } from 'viem';
|
|
|
|
declare global {
|
|
interface Window {
|
|
ethereum?: EIP1193Provider;
|
|
}
|
|
}
|
|
|
|
declare const __APP_VERSION__: string;
|
|
|
|
export {};
|