antd-mobile
Version:
基于 React 的移动设计规范实现
12 lines (11 loc) • 332 B
TypeScript
/// <reference types="react" />
import React from 'react';
import tsPropsType from './PropsType';
export default class MIndexedList extends React.Component<tsPropsType, any> {
static defaultProps: {
prefixCls: string;
listPrefixCls: string;
listViewPrefixCls: string;
};
render(): JSX.Element;
}