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
|
|
|
|
|
|
|
|
import { AntdComponent } from './component';
|
|
|
|
|
2020-08-16 20:00:45 +08:00
|
|
|
export declare class Meta {
|
|
|
|
$props: {
|
|
|
|
/**
|
|
|
|
* The avatar of list item
|
|
|
|
* @type any (slot)
|
|
|
|
*/
|
|
|
|
avatar: any;
|
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)
|
|
|
|
*/
|
|
|
|
description: any;
|
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)
|
|
|
|
*/
|
|
|
|
title: any;
|
|
|
|
};
|
2019-01-01 12:13:51 +08:00
|
|
|
}
|