import { HttpRequestInterface } from './http-request.interface';

/**
 * Once we have different types of requests, other than HTTP, we'll add those too
 */
export type RequestInterface = HttpRequestInterface;
