9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { Window as KeplrWindow } from "@keplr-wallet/types";
|
|
|
|
declare global {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
interface Window extends KeplrWindow {
|
|
cosmostation: any;
|
|
}
|
|
}
|