From 4e140d42f0c75bc071b7ca2a74d4850abf478059 Mon Sep 17 00:00:00 2001 From: tate Date: Thu, 15 Feb 2024 12:44:09 +1100 Subject: [PATCH] remove unnecessary const --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 225f86ec..1f2bb8ab 100644 --- a/src/index.ts +++ b/src/index.ts @@ -66,7 +66,7 @@ export const getCoderByCoinName = < }; export const getCoderByCoinType = < - const TCoinType extends CoinType | number = CoinType | number + TCoinType extends CoinType | number = CoinType | number >( coinType: TCoinType ): GetCoderByCoinType => {