tariffs/src/constants/default.ts

11 lines
216 B
TypeScript
Raw Normal View History

2022-12-16 00:36:33 +00:00
import type { Environment } from "@/types/environment";
type Default = {
readonly [key: string]: string;
readonly environment: Environment;
};
export const DEFAULT: Default = {
environment: "development",
};