mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-15 10:14:19 +00:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
/**
|
|
* Http Headers
|
|
*
|
|
* Helper type to represent HTTP headers.
|
|
*/
|
|
export type HttpHeaders = {
|
|
[key: string]: string;
|
|
};
|