10 lines
141 B
TypeScript
10 lines
141 B
TypeScript
'use strict';
|
|
|
|
console.log("Using global.ethers");
|
|
|
|
const anyGlobal = (window as any);
|
|
|
|
const ethers = anyGlobal._ethers;
|
|
|
|
export { ethers }
|