Riku
2024-08-13 cf693a5227f17bbf2201512128d267281a8c5695
miniprogram_npm/tdesign-miniprogram/date-time-picker/type.d.ts
@@ -1,9 +1,14 @@
import { PopupProps } from '../popup/index';
export interface TdDateTimePickerProps {
    cancelBtn?: {
        type: StringConstructor;
        value?: string;
    };
    confirmBtn?: {
        type: StringConstructor;
        value?: string;
    };
    customLocale?: {
        type: StringConstructor;
        value?: string;
    };
@@ -27,6 +32,10 @@
        type: null;
        value?: DateTimePickerMode;
    };
    popupProps?: {
        type: ObjectConstructor;
        value?: PopupProps;
    };
    showWeek?: {
        type: BooleanConstructor;
        value?: boolean;
@@ -43,6 +52,10 @@
        type: StringConstructor;
        value?: string;
    };
    usePopup?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    value?: {
        type: null;
        value?: DateValue;
@@ -54,10 +67,6 @@
    visible?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    popupProps: {
        type: Object;
        value: {};
    };
}
export declare type DateTimePickerMode = TimeModeValues | Array<TimeModeValues>;