index.d.ts 1.1 KB

12345678910111213141516171819202122232425262728
  1. export { Band } from './band';
  2. export { Linear } from './linear';
  3. export { Ordinal } from './ordinal';
  4. export { Identity } from './identity';
  5. export { Point } from './point';
  6. export { Time } from './time';
  7. export { Log } from './log';
  8. export { Pow } from './pow';
  9. export { Threshold } from './threshold';
  10. export { Quantile } from './quantile';
  11. export { Quantize } from './quantize';
  12. export { Sqrt } from './sqrt';
  13. export { Sequential } from './sequential';
  14. export { Constant } from './constant';
  15. export type { BandOptions } from './band';
  16. export type { LinearOptions } from './linear';
  17. export type { OrdinalOptions } from './ordinal';
  18. export type { IdentityOptions } from './identity';
  19. export type { PointOptions } from './point';
  20. export type { TimeOptions } from './time';
  21. export type { LogOptions } from './log';
  22. export type { PowOptions } from './pow';
  23. export type { ThresholdOptions } from './threshold';
  24. export type { QuantileOptions } from './quantile';
  25. export type { QuantizeOptions } from './quantize';
  26. export type { SqrtOptions } from './sqrt';
  27. export type { SequentialOptions } from './sequential';
  28. export type { ConstantOptions } from './constant';