Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

fundWallet.d.ts 340B

123456789101112
  1. import type { Client } from '../client';
  2. import Wallet from '.';
  3. declare function fundWallet(this: Client, wallet?: Wallet | null, options?: {
  4. faucetHost?: string;
  5. faucetPath?: string;
  6. amount?: string;
  7. }): Promise<{
  8. wallet: Wallet;
  9. balance: number;
  10. }>;
  11. export default fundWallet;
  12. //# sourceMappingURL=fundWallet.d.ts.map