From 7567af4a6735d51cdf81b4fc62283be11182afb9 Mon Sep 17 00:00:00 2001 From: Jerko J <83344666+JJ-Cro@users.noreply.github.com> Date: Thu, 3 Oct 2024 13:55:45 +0200 Subject: [PATCH] chore(): fixed type --- src/rest-client-v5.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest-client-v5.ts b/src/rest-client-v5.ts index 31605c1..9a30bf4 100644 --- a/src/rest-client-v5.ts +++ b/src/rest-client-v5.ts @@ -2189,7 +2189,7 @@ export class RestClientV5 extends BaseRestClient { */ issueBrokerVoucher( params: IssueVoucherParamsV5, - ): Promise> { + ): Promise> { return this.postPrivate('/v5/broker/award/distribute-award', params); }