@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
7 lines • 389 B
TypeScript
/// <reference types="react" />
import { RefreshControlProps as RefreshControlPropsBase } from 'react-native';
export type RefreshControlProps = Omit<RefreshControlPropsBase, 'onRefresh' | 'refreshing'> & {
onRefresh: () => Promise<void>;
};
export declare function RefreshControl({ onRefresh, ...props }: RefreshControlProps): JSX.Element;
//# sourceMappingURL=RefreshControl.d.ts.map