UNPKG

@react-native-oh-tpl/flash-list

Version:

FlashList is a more performant FlatList replacement

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