@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
13 lines (12 loc) • 492 B
TypeScript
import React from 'react';
export default class BasicListExample extends React.Component<any, any> {
state: {
layout: string;
};
sleep: (time: any) => Promise<unknown>;
onFetch: (page: number | undefined, startFetch: (arg0: string[], arg1: number) => void, abortFetch: () => void) => Promise<void>;
renderItem: (item: any) => JSX.Element;
render(): JSX.Element;
}
export declare const title = "ListView";
export declare const description = "ListView Example";