riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
miniprogram_npm/tdesign-miniprogram/cascader/type.d.ts
@@ -1,16 +1,24 @@
import { TreeOptionData, KeysType } from '../common/common';
import { TreeOptionData, TreeKeysType } from '../common/common';
export interface TdCascaderProps<CascaderOption extends TreeOptionData = TreeOptionData> {
    checkStrictly?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    closeBtn?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    keys?: {
        type: ObjectConstructor;
        value?: KeysType;
        value?: CascaderKeysType;
    };
    options?: {
        type: ArrayConstructor;
        value?: Array<CascaderOption>;
    };
    placeholder?: {
        type: StringConstructor;
        value?: string;
    };
    subTitles?: {
        type: ArrayConstructor;
@@ -37,3 +45,4 @@
        value?: boolean;
    };
}
export declare type CascaderKeysType = TreeKeysType;