UNPKG

@casipe/react-service-provider

Version:
16 lines (15 loc) 413 B
import { AxiosResponse } from 'axios'; import { Observable } from 'rxjs'; import { Registry } from '../../providers/ServiceProvider'; export interface HttpManagerProps { version?: string; } export interface HttpManagerLogProps { registry: Registry; } export interface RegistryActionsProps { registry: Registry; } export interface ResponseStatusProps<T> { response: Observable<AxiosResponse<T>>; }