初始化项目, 添加TDesign等包
This commit is contained in:
34
miniprogram/miniprogram_npm/tdesign-miniprogram/step-item/step-item.d.ts
vendored
Normal file
34
miniprogram/miniprogram_npm/tdesign-miniprogram/step-item/step-item.d.ts
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||||
export default class StepItem extends SuperComponent {
|
||||
options: {
|
||||
multipleSlots: boolean;
|
||||
};
|
||||
relations: RelationsOptions;
|
||||
externalClasses: string[];
|
||||
properties: import("./type").TdStepItemProps;
|
||||
data: {
|
||||
classPrefix: string;
|
||||
prefix: string;
|
||||
index: number;
|
||||
isDot: boolean;
|
||||
curStatus: string;
|
||||
layout: string;
|
||||
isLastChild: boolean;
|
||||
sequence: string;
|
||||
};
|
||||
observers: {
|
||||
status(value: any): void;
|
||||
};
|
||||
methods: {
|
||||
updateStatus({ current, currentStatus, index, theme, layout, items, sequence }: {
|
||||
current: any;
|
||||
currentStatus: any;
|
||||
index: any;
|
||||
theme: any;
|
||||
layout: any;
|
||||
items: any;
|
||||
sequence: any;
|
||||
}): void;
|
||||
onTap(): void;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user