UnlyEd/next-right-now-admin

View on GitHub
src/types/PublicHeaders.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Headers that are shared to the client by the server (and therefore made public)
 */
export type PublicHeaders = {
  'accept-language'?: string;
  'user-agent'?: string;
  host?: string;
}