UNPKG

react-native-refresh-loadmore-recyclerlistview

Version:

The listview that you need and deserve. It was built for performance, uses cell recycling to achieve smooth scrolling.

11 lines (10 loc) 237 B
export default class CustomError extends Error { constructor(exception: Exception) { super(exception.message); this.name = exception.type; } } export interface Exception { type: string; message: string; }