Files
poe-auto-pricer/app/http/http.ts

8 lines
171 B
TypeScript

import axios from 'axios';
export const http = axios.create();
export const setHeader = (header: string, value: string) => {
http.defaults.headers[header] = value;
};