@serenity-js/rest
Version:
Serenity/JS Screenplay Pattern library for interacting with REST and other HTTP-based services, supporting comprehensive API testing and blended testing scenarios
15 lines • 464 B
TypeScript
import { type CreateAxiosDefaults } from 'axios';
export type AxiosRequestConfigProxyDefaults = {
host: string;
port?: number;
auth?: {
username: string;
password: string;
};
protocol?: string;
bypass?: string;
};
export type AxiosRequestConfigDefaults<Data = any> = Omit<CreateAxiosDefaults<Data>, 'proxy'> & {
proxy?: AxiosRequestConfigProxyDefaults | false;
};
//# sourceMappingURL=AxiosRequestConfigDefaults.d.ts.map