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.

unsubscribe.d.ts 548B

12345678910111213141516171819
  1. import { Currency, StreamType } from '../common';
  2. import type { BaseRequest, BaseResponse } from './baseMethod';
  3. interface Book {
  4. taker_gets: Currency;
  5. taker_pays: Currency;
  6. both?: boolean;
  7. }
  8. export interface UnsubscribeRequest extends BaseRequest {
  9. command: 'unsubscribe';
  10. streams?: StreamType[];
  11. accounts?: string[];
  12. accounts_proposed?: string[];
  13. books?: Book[];
  14. }
  15. export interface UnsubscribeResponse extends BaseResponse {
  16. result: Record<string, never>;
  17. }
  18. export {};
  19. //# sourceMappingURL=unsubscribe.d.ts.map