Hi,
Does ReScript have something like @throws in:
/**
* Returns paginated items list.
*
* You can use the generic T to supply a wrapper type of the crud model.
*
* @throws {ClientResponseError}
*/
getList<T = M>(page?: number, perPage?: number, options?: ListOptions): Promise<ListResult<T>>;