riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
miniprogram_npm/tdesign-miniprogram/picker/type.d.ts
@@ -1,4 +1,3 @@
import { ButtonProps } from '../button/index';
import { PopupProps } from '../popup/index';
import { KeysType } from '../common/common';
export interface TdPickerProps {
@@ -8,11 +7,11 @@
    };
    cancelBtn?: {
        type: null;
        value?: boolean | string | ButtonProps;
        value?: boolean | string;
    };
    confirmBtn?: {
        type: null;
        value?: boolean | string | ButtonProps;
        value?: boolean | string;
    };
    header?: {
        type: BooleanConstructor;
@@ -54,5 +53,9 @@
        type: BooleanConstructor;
        value?: boolean;
    };
    visibleItemCount?: {
        type: NumberConstructor;
        value?: number;
    };
}
export declare type PickerValue = string | number;