gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
15 lines (14 loc) • 556 B
TypeScript
import { type DatetimePickerSlots, type DatetimePickerProps } from '../datetime-picker/common';
export interface DatetimeRangePickerProps extends Omit<DatetimePickerProps, 'modelValue'> {
modelValue?: (Date | string)[];
tabs?: string[];
}
export declare const defaultDatetimeRangePickerProps: {
type: string;
};
export interface DatetimeRangePickerSlots extends DatetimePickerSlots {
}
export interface DatetimeRangePickerEmits {
(e: 'update:model-value', date: (Date | string)[]): void;
(e: 'change', date: (Date | string)[]): void;
}