@casipe/react-service-provider
Version:
React library sevice provider
16 lines (15 loc) • 413 B
TypeScript
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>>;
}