Pārlūkot izejas kodu

ts: Add data type to clients in `AccountNamespace` (#1358)

Harshal Sheth 3 gadi atpakaļ
vecāks
revīzija
423223d5bf
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      ts/src/program/namespace/account.ts

+ 1 - 1
ts/src/program/namespace/account.ts

@@ -66,7 +66,7 @@ type NullableIdlAccount<IDL extends Idl> = IDL["accounts"] extends undefined
  * For the full API, see the [[AccountClient]] reference.
  */
 export type AccountNamespace<IDL extends Idl = Idl> = {
-  [M in keyof AllAccountsMap<IDL>]: AccountClient<IDL>;
+  [M in keyof AllAccountsMap<IDL>]: AccountClient<IDL, AllAccountsMap<IDL>[M]>;
 };
 
 export class AccountClient<