Skip to content

Commit

Permalink
Replace declare for ethereum
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Jun 7, 2024
1 parent b472603 commit c89db11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 6 additions & 1 deletion apps/app/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ import VueClipboard from 'vue3-clipboard';
import Vue3Toastify from 'vue3-toastify';
import router from './router';
import Mixpanel from '@thxnetwork/common/mixpanel';

import './scss/main.scss';

declare global {
interface Window {
ethereum: any;
}
}

const pinia = createPinia();
const app = createApp(App);

Expand Down
6 changes: 0 additions & 6 deletions apps/app/src/shims-vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,3 @@ declare module '*.vue' {

declare module 'vue3-clipboard';
declare module 'promise-poller';

declare global {
interface Window {
ethereum: any;
}
}

0 comments on commit c89db11

Please sign in to comment.