// Copyright (c) Tribufu. All Rights Reserved. // SPDX-License-Identifier: MIT /** * Http Headers * * Helper type to represent HTTP headers. */ export type HttpHeaders = { [key: string]: string; };