TimeUnitColumn.d.ts 637 B

123456789101112131415
  1. export declare type Unit = {
  2. label: any;
  3. value: number;
  4. disabled: boolean;
  5. };
  6. export declare type TimeUnitColumnProps = {
  7. prefixCls?: string;
  8. units?: Unit[];
  9. value?: number;
  10. active?: boolean;
  11. hideDisabledOptions?: boolean;
  12. onSelect?: (value: number) => void;
  13. };
  14. declare const _default: import("vue").DefineComponent<TimeUnitColumnProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<TimeUnitColumnProps>, {}>;
  15. export default _default;