Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

server.d.ts 456B

12345678
  1. import { RippleAPI } from '..';
  2. declare function isConnected(this: RippleAPI): boolean;
  3. declare function getLedgerVersion(this: RippleAPI): Promise<number>;
  4. declare function connect(this: RippleAPI): Promise<void>;
  5. declare function disconnect(this: RippleAPI): Promise<void>;
  6. declare function formatLedgerClose(ledgerClose: any): object;
  7. export { connect, disconnect, isConnected, getLedgerVersion, formatLedgerClose };
  8. //# sourceMappingURL=server.d.ts.map