UNPKG

343 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { BinTransform } from '../spec';
3export 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 */
12export declare const Bin: TC<BinOptions>;