You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
../node_modules/@types/node/globals.d.ts:167:13 - error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.
167 declare var require: NodeRequire;
~~~~~~~
The text was updated successfully, but these errors were encountered:
src/config.ts:1:5 - error TS2451: Cannot redeclare block-scoped variable 'global'.
1 let global : any = typeof window !== 'undefined' ? window : self;
~~~~~~
src/model/AppState.ts:37:5 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
37 self.intervalSave = setTimeout(function(){
~~~~~~~~~~~~~~~~~
src/model/WalletWatchdog.ts:58:3 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
58 this.intervalTransactionsProcess = setInterval(function(){
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/model/WalletWatchdog.ts:74:4 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
74 this.intervalMempool = setInterval(function(){
~~~~~~~~~~~~~~~~~~~~
src/model/WalletWatchdog.ts:187:4 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
187 this.intervalTransactionsProcess = setInterval(function(){
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/pages/account.ts:44:3 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
44 this.intervalRefresh = setInterval(function(){
~~~~~~~~~~~~~~~~~~~~
src/pages/network.ts:38:3 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
38 this.intervalRefreshStat = setInterval(function(){
~~~~~~~~~~~~~~~~~~~~~~~~
src/pages/send.ts:377:4 - error TS2322: Type 'Timeout' is not assignable to type 'number'.
377 this.timeoutResolveAlias = setTimeout(function () {
~~~~~~~~~~~~~~~~~~~~~~~~
../node_modules/@types/node/globals.d.ts:144:13 - error TS2451: Cannot redeclare block-scoped variable 'global'.
144 declare var global: NodeJS.Global;
~~~~~~
../node_modules/@types/node/globals.d.ts:167:13 - error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'Require', but here has type 'NodeRequire'.
167 declare var require: NodeRequire;
~~~~~~~
The text was updated successfully, but these errors were encountered: