constant.d.ts 228 B

1234
  1. import { ConstantScale as ConstantScaleSpec } from '../spec';
  2. import { ScaleComponent as SC } from '../runtime';
  3. export type ConstantOptions = Omit<ConstantScaleSpec, 'type'>;
  4. export declare const Constant: SC<ConstantOptions>;