tdesign-vue
Version: 
18 lines (17 loc) • 375 B
TypeScript
import { TNode } from '../common';
export interface TdLayoutProps {
    direction?: 'vertical' | 'horizontal';
}
export interface TdHeaderProps {
    height?: string;
}
export interface TdAsideProps {
    width?: string;
}
export interface TdContentProps {
    content?: string | TNode;
    default?: string | TNode;
}
export interface TdFooterProps {
    height?: string;
}