UNPKG

@yoroi/types

Version:
15 lines (11 loc) 281 B
import {Either} from '../helpers/types' export type ApiResponseError = { status: number message: string responseData: unknown } export type ApiResponseSuccess<T> = { status: number data: T } export type ApiResponse<T> = Either<ApiResponseError, ApiResponseSuccess<T>>