Files
quinn-wx/components/empty/type.d.ts
2022-12-01 17:21:12 +08:00

23 lines
536 B
TypeScript

export interface TdEmptyProps {
description?: {
type: StringConstructor;
value?: string;
required?: boolean;
};
externalClasses?: {
type: ArrayConstructor;
value?: ['t-class', 't-class-description', 't-class-image', 't-class-actions'];
required?: boolean;
};
icon?: {
type: StringConstructor;
value?: string;
required?: boolean;
};
image?: {
type: StringConstructor;
value?: string;
required?: boolean;
};
}