ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
25 lines (20 loc) • 750 B
TypeScript
// 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';
import { Meta } from '../meta';
export declare class ListItem extends AntdComponent {
static Meta: typeof Meta;
/**
* The actions content of list item. If itemLayout is vertical, shows the content on bottom,
* otherwise shows content on the far right.
* @type any (VNode[] | slot)
*/
actions: any;
/**
* The extra content of list item. If itemLayout is vertical, shows the content on right,
* otherwise shows content on the far right.
* @type any (string | slot)
*/
extra: any;
}