You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

autofill.d.ts 266B

12345
  1. import type { Client } from '..';
  2. import { Transaction } from '../models/transactions';
  3. declare function autofill<T extends Transaction>(this: Client, transaction: T, signersCount?: number): Promise<T>;
  4. export default autofill;
  5. //# sourceMappingURL=autofill.d.ts.map