riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
miniprogram_npm/tdesign-miniprogram/indexes/type.d.ts
@@ -1,15 +1,15 @@
export interface TdIndexesProps {
    style?: {
        type: StringConstructor;
        value?: string;
    current?: {
        type: null;
        value?: string | number;
    };
    defaultCurrent?: {
        type: null;
        value?: string | number;
    };
    indexList?: {
        type: ArrayConstructor;
        value?: string[] | number[];
    };
    list?: {
        type: ArrayConstructor;
        value?: ListItem[];
        value?: Array<string | number>;
    };
    sticky?: {
        type: BooleanConstructor;
@@ -19,12 +19,4 @@
        type: NumberConstructor;
        value?: number;
    };
}
export interface ListItem {
    title: string;
    index: string;
    children: {
        title: string;
        [key: string]: any;
    }[];
}