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';
16
16
import { Calendar } from './calendar' ;
17
17
import { Card } from './card' ;
18
18
import { Collapse } from './collapse/collapse' ;
19
+ import { Comment } from './comment' ;
19
20
import { Carousel } from './carousel' ;
20
21
import { Cascader } from './cascader' ;
21
22
import { 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