import { ConfigBaseInterface } from "../../../core"; /** * HTTP Adapter Configuration * * * @author Mahsum UREBE * @licence MIT * @interface */ export interface HttpAdapterConfigInterface extends ConfigBaseInterface { /** * Headers * * @type {?object} */ headers?: Record; /** * Timeout * * @default 10_000 * @type {?number} */ timeout?: number; }