import type { Environment } from "@/types/environment"; type Default = { readonly [key: string]: string; readonly environment: Environment; }; export const DEFAULT: Default = { environment: "development", };