11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
![]() |
import type { Environment } from "@/types/environment";
|
||
|
|
||
|
type Default = {
|
||
|
readonly [key: string]: string;
|
||
|
readonly environment: Environment;
|
||
|
};
|
||
|
|
||
|
export const DEFAULT: Default = {
|
||
|
environment: "development",
|
||
|
};
|