index.js 850 B

1234567891011121314151617181920212223
  1. import cat from './cat';
  2. import d3Linear from './d3-linear';
  3. import linear from './linear';
  4. import log from './log';
  5. import pow from './pow';
  6. import quantile from './quantile';
  7. import rPretty from './r-prettry';
  8. import { getTickMethod, registerTickMethod } from './register';
  9. import time from './time';
  10. import timeCat from './time-cat';
  11. import timePretty from './time-pretty';
  12. registerTickMethod('cat', cat);
  13. registerTickMethod('time-cat', timeCat);
  14. registerTickMethod('wilkinson-extended', linear);
  15. registerTickMethod('r-pretty', rPretty);
  16. registerTickMethod('time', time);
  17. registerTickMethod('time-pretty', timePretty);
  18. registerTickMethod('log', log);
  19. registerTickMethod('pow', pow);
  20. registerTickMethod('quantile', quantile);
  21. registerTickMethod('d3-linear', d3Linear);
  22. export { getTickMethod, registerTickMethod };
  23. //# sourceMappingURL=index.js.map