ant-design-vue/types/meta.d.ts

29 lines
703 B
TypeScript
Raw Normal View History

// 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 { VNodeChild } from 'vue';
2020-09-07 12:45:01 +08:00
import { AntdComponent, AntdProps } from './component';
2020-09-07 12:45:01 +08:00
export declare class Meta extends AntdComponent {
2020-08-31 14:59:56 +08:00
$props: AntdProps & {
/**
* The avatar of list item
* @type any (slot)
*/
avatar?: VNodeChild;
/**
* The description of list item
* @type any (string | slot)
*/
2020-08-21 10:46:56 +08:00
description?: VNodeChild | JSX.Element;
/**
* The title of list item
* @type any (string | slot)
*/
2020-08-21 10:46:56 +08:00
title?: VNodeChild | JSX.Element;
};
}