tdesign-vue
Version:
12 lines (11 loc) • 329 B
TypeScript
import { AvatarProps } from '../avatar';
import { TNode } from '../common';
export interface TdCommentProps {
actions?: Array<TNode>;
author?: string | TNode;
avatar?: string | AvatarProps | TNode;
content?: string | TNode;
datetime?: string | TNode;
quote?: string | TNode;
reply?: string | TNode;
}