UNPKG

362 BTypeScriptView Raw
1import { TransformComponent as TC } from '../runtime';
2import { SampleTransform } from '../spec';
3export type SampleOptions = Omit<SampleTransform, 'type'>;
4/**
5 * The sample transform groups marks with specified groupBy fields, and
6 * sample data for each group when data.length >= threshold(default = 2000).
7 */
8export declare const Sample: TC<SampleOptions>;