bin.d.ts 343 B

123456789101112
  1. import { TransformComponent as TC } from '../runtime';
  2. import { BinTransform } from '../spec';
  3. export type BinOptions = Omit<BinTransform, 'type'> & {
  4. groupChannels?: string[];
  5. binChannels?: string[];
  6. };
  7. /**
  8. * The Bin aggregate data.
  9. * @todo More threshold method.
  10. * @todo Performance.
  11. */
  12. export declare const Bin: TC<BinOptions>;