libmodulor
Version:
A TypeScript library to create platform-agnostic applications
8 lines (7 loc) • 404 B
TypeScript
import type { SemVerVersion } from '../../dt/index.js';
import type { HTTPHeaderName } from '../../utils/index.js';
export type AuthCookieName = 'auth';
export type PublicApiKeyHeaderName = 'X-API-Key' | (string & {});
export declare const AUTHORIZATION_HEADER_NAME: HTTPHeaderName;
export declare const X_FORWARDED_PROTO_HEADER_NAME: HTTPHeaderName;
export declare const DEFAULT_VERSION: SemVerVersion;