个人中心

This commit is contained in:
limqhz
2022-12-13 16:53:09 +08:00
parent 0efe64d1bb
commit c0c88244c3
39 changed files with 763 additions and 60 deletions

57
components/collapse/type.d.ts vendored Normal file
View File

@@ -0,0 +1,57 @@
export interface TdCollapseProps {
defaultExpandAll?: {
type: BooleanConstructor;
value?: boolean;
};
disabled?: {
type: BooleanConstructor;
value?: boolean;
};
expandIcon?: {
type: BooleanConstructor;
value?: boolean;
};
expandMutex?: {
type: BooleanConstructor;
value?: boolean;
};
value?: {
type: ArrayConstructor;
value?: CollapseValue;
};
defaultValue?: {
type: ArrayConstructor;
value?: CollapseValue;
};
}
export interface TdCollapsePanelProps {
content?: {
type: StringConstructor;
value?: string;
};
disabled?: {
type: BooleanConstructor;
value?: boolean;
};
expandIcon?: {
type: BooleanConstructor;
value?: boolean;
};
externalClasses?: {
type: ArrayConstructor;
value?: ['t-class', 't-class-header', 't-class-content'];
};
header?: {
type: StringConstructor;
value?: string;
};
headerRightContent?: {
type: StringConstructor;
value?: string;
};
value?: {
type: null;
value?: string | number;
};
}
export declare type CollapseValue = Array<string | number>;