import { Time as TimeScale } from '@antv/scale'; import { TimeScale as TimeScaleSpec } from '../spec'; import { ScaleComponent as SC } from '../runtime'; export type TimeOptions = Omit; export const Time: SC = (options) => { return new TimeScale(options); }; Time.props = {};