threshold.d.ts 234 B

1234
  1. import { ScaleComponent as SC } from '../runtime';
  2. import { ThresholdScale as ThresholdScaleSpec } from '../spec';
  3. export type ThresholdOptions = Omit<ThresholdScaleSpec, 'type'>;
  4. export declare const Threshold: SC<ThresholdOptions>;