| 12345678 |
- import { TransformComponent as TC } from '../runtime';
- import { SampleTransform } from '../spec';
- export type SampleOptions = Omit<SampleTransform, 'type'>;
- /**
- * The sample transform groups marks with specified groupBy fields, and
- * sample data for each group when data.length >= threshold(default = 2000).
- */
- export declare const Sample: TC<SampleOptions>;
|