index.d.ts 773 B

123456789101112131415161718192021222324252627
  1. import * as ADD from './ADD';
  2. import * as COUNT from './COUNT';
  3. import * as INCRBY from './INCRBY';
  4. import * as INFO from './INFO';
  5. import * as LIST_WITHCOUNT from './LIST_WITHCOUNT';
  6. import * as LIST from './LIST';
  7. import * as QUERY from './QUERY';
  8. import * as RESERVE from './RESERVE';
  9. declare const _default: {
  10. ADD: typeof ADD;
  11. add: typeof ADD;
  12. COUNT: typeof COUNT;
  13. count: typeof COUNT;
  14. INCRBY: typeof INCRBY;
  15. incrBy: typeof INCRBY;
  16. INFO: typeof INFO;
  17. info: typeof INFO;
  18. LIST_WITHCOUNT: typeof LIST_WITHCOUNT;
  19. listWithCount: typeof LIST_WITHCOUNT;
  20. LIST: typeof LIST;
  21. list: typeof LIST;
  22. QUERY: typeof QUERY;
  23. query: typeof QUERY;
  24. RESERVE: typeof RESERVE;
  25. reserve: typeof RESERVE;
  26. };
  27. export default _default;