File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { Button } from './button/button';
1616import { Calendar } from './calendar' ;
1717import { Card } from './card' ;
1818import { Collapse } from './collapse/collapse' ;
19+ import { Comment } from './comment' ;
1920import { Carousel } from './carousel' ;
2021import { Cascader } from './cascader' ;
2122import { Checkbox } from './checkbox/checkbox' ;
Original file line number Diff line number Diff line change 1+ // Project: https://github.com/vueComponent/ant-design-vue
2+ // Definitions: https://github.com/vueComponent/ant-design-vue/types
3+
4+ import { AntdComponent } from './component' ;
5+
6+ export declare class Comment extends AntdComponent {
7+ /** List of action items rendered below the comment content */
8+ actions ?: Array < any > ;
9+ /** The element to display as the comment author. */
10+ author ?: any ;
11+ /** The element to display as the comment avatar - generally an antd Avatar */
12+ avatar ?: any ;
13+ /** The main content of the comment */
14+ content : any ;
15+ /** Comment prefix defaults to '.ant-comment' */
16+ prefixCls ?: string ;
17+ /** A datetime element containing the time to be displayed */
18+ datetime ?: any ;
19+ }
You can’t perform that action at this time.
0 commit comments