From 4e27fad6c65e7a6278d5aee0d02cc44155ea3c5e Mon Sep 17 00:00:00 2001 From: KillariDev Date: Wed, 14 Feb 2024 14:16:53 +0200 Subject: [PATCH] add missing type for cast --- lib.esm/abi/coders/abstract-coder.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib.esm/abi/coders/abstract-coder.d.ts b/lib.esm/abi/coders/abstract-coder.d.ts index 8673c88b5..17b3db699 100644 --- a/lib.esm/abi/coders/abstract-coder.d.ts +++ b/lib.esm/abi/coders/abstract-coder.d.ts @@ -3,6 +3,7 @@ import type { BigNumberish, BytesLike } from "../../utils/index.js"; * @_ignore: */ export declare const WordSize: number; +type Cast = T extends U ? T : U; /** * A [[Result]] is a sub-class of Array, which allows accessing any * of its values either positionally by its index or, if keys are