UNPKG

straico-api

Version:

A lightweight and easy-to-use TypeScript library for interacting with the Straico API.

11 lines (10 loc) 315 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.buildHeaders = void 0; function buildHeaders(apiKey) { return new Headers({ Authorization: "Bearer ".concat(apiKey), 'Content-Type': 'application/json', }); } exports.buildHeaders = buildHeaders;