sample.d.ts 362 B

12345678
  1. import { TransformComponent as TC } from '../runtime';
  2. import { SampleTransform } from '../spec';
  3. export 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. */
  8. export declare const Sample: TC<SampleOptions>;