UNPKG

@yoroi/types

Version:
12 lines 337 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>>; //# sourceMappingURL=response.d.ts.map