@aimake/nanod
Version:
## 设计模式 NANO DESIGN 是面向于企业级中台化应用的解决方案。服务于 ToB 和 ToE 类型的单页应用,应用于各产品中从而产出了一套设计及前端规范。
38 lines (37 loc) • 967 B
TypeScript
import * as React from 'react';
import { ListGridType } from './index';
export interface ListItemProps {
className?: string;
children?: React.ReactNode;
prefixCls?: string;
style?: React.CSSProperties;
extra?: React.ReactNode;
actions?: Array<React.ReactNode>;
grid?: ListGridType;
}
export interface ListItemMetaProps {
avatar?: React.ReactNode;
className?: string;
children?: React.ReactNode;
description?: React.ReactNode;
prefixCls?: string;
style?: React.CSSProperties;
title?: React.ReactNode;
}
export declare const Meta: (props: ListItemMetaProps) => JSX.Element;
export default class Item extends React.Component<ListItemProps, any> {
static Meta: typeof Meta;
static propTypes: {
column: any;
xs: any;
sm: any;
md: any;
lg: any;
xl: any;
xxl: any;
};
static contextTypes: {
grid: any;
};
render(): JSX.Element;
}