sequential.d.ts 240 B

1234
  1. import { ScaleComponent as SC } from '../runtime';
  2. import { SequentialScale as SequentialScaleSpec } from '../spec';
  3. export type SequentialOptions = Omit<SequentialScaleSpec, 'type'>;
  4. export declare const Sequential: SC<SequentialOptions>;