UNPKG

@shopify/flash-list

Version:

FlashList is a more performant FlatList replacement

11 lines (10 loc) 245 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; }