2019-01-01 12:13:51 +08:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
|
2020-08-17 21:12:17 +08:00
|
|
|
import { VNodeChild } from 'vue';
|
2020-09-07 12:45:01 +08:00
|
|
|
import { AntdComponent, AntdProps } from './component';
|
2019-01-01 12:13:51 +08:00
|
|
|
|
2020-09-07 12:45:01 +08:00
|
|
|
export declare class Meta extends AntdComponent {
|
2020-08-31 14:59:56 +08:00
|
|
|
$props: AntdProps & {
|
2020-08-16 20:00:45 +08:00
|
|
|
/**
|
|
|
|
* The avatar of list item
|
|
|
|
* @type any (slot)
|
|
|
|
*/
|
2020-08-17 21:12:17 +08:00
|
|
|
avatar?: VNodeChild;
|
2019-01-01 12:13:51 +08:00
|
|
|
|
2020-08-16 20:00:45 +08:00
|
|
|
/**
|
|
|
|
* The description of list item
|
|
|
|
* @type any (string | slot)
|
|
|
|
*/
|
2020-08-21 10:46:56 +08:00
|
|
|
description?: VNodeChild | JSX.Element;
|
2019-01-01 12:13:51 +08:00
|
|
|
|
2020-08-16 20:00:45 +08:00
|
|
|
/**
|
|
|
|
* The title of list item
|
|
|
|
* @type any (string | slot)
|
|
|
|
*/
|
2020-08-21 10:46:56 +08:00
|
|
|
title?: VNodeChild | JSX.Element;
|
2020-08-16 20:00:45 +08:00
|
|
|
};
|
2019-01-01 12:13:51 +08:00
|
|
|
}
|