trade360-nodejs-sdk
Version:
LSports Trade360 SDK for Node.js
18 lines (17 loc) • 486 B
TypeScript
import { HttpRequestSettings } from '../validators';
/**
* Application configuration interface for the API
* service settings for the package types HTTP settings
*/
export interface HttpAppConfig {
trade360: HttpSettings;
}
/**
* Http settings interface for the API service settings
* for the package types HTTP settings
*/
export interface HttpSettings {
restApiBaseUrl: string;
inPlayMQSettings?: HttpRequestSettings;
preMatchMQSettings?: HttpRequestSettings;
}