/** * Flowtype definitions for response * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Either } from "../helpers/types"; export type ApiResponseError = { status: number, message: string, responseData: mixed, ... }; export type ApiResponseSuccess = { status: number, data: T, ... }; export type ApiResponse = Either>;