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.

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