/** * The following types are from ethers maths.ts */ /** * Any type that can be used where a numeric value is needed. */ export type Numeric = number | bigint; /** * Any type that can be used where a big number is needed. */ export type BigNumberish = string | Numeric; //# sourceMappingURL=type-utils.d.ts.map