mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-18 09:25:14 +02:00
9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
import type { HttpRequestHeader } from "@yaakapp-internal/models";
|
|
import { rpc } from "./rpc";
|
|
|
|
/**
|
|
* Global default headers fetched from the backend.
|
|
* These are static and fetched once on module load.
|
|
*/
|
|
export const defaultHeaders: HttpRequestHeader[] = await rpc("cmd_default_headers");
|