tdesign-pro-component
Version:
ProComponents tdesign-vue-next + Vue3 + TS
22 lines (21 loc) • 690 B
TypeScript
import { VueNode, WithFalse } from '@tdesign-pro-component/utils';
import { CSSProperties } from 'vue';
export interface RowContainerProps {
image?: string | WithFalse<VueNode>;
title?: string | WithFalse<VueNode>;
actions?: WithFalse<VueNode>;
description?: WithFalse<VueNode>;
footer?: WithFalse<VueNode>;
imageAlign?: 'left' | 'right';
imageStyle?: CSSProperties;
imageWidth?: number | string;
imageView?: boolean;
imageHeight?: string;
}
export interface RowContainerSlots {
image?: WithFalse<VueNode>;
title?: WithFalse<VueNode>;
actions?: WithFalse<VueNode>;
description?: WithFalse<VueNode>;
footer?: WithFalse<VueNode>;
}