7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import { Window as KeplrWindow } from "@keplr-wallet/types";
|
|
|
|
declare global {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
interface Window extends KeplrWindow {}
|
|
}
|