Newer
Older
hello-programmer-world / src / env.d.ts
@h.sakamoto h.sakamoto 9 days ago 151 bytes php
interface ImportMetaEnv {
  WEB_PORT: string;
  DB_PORT: string;
  PHPMYADMIN_PORT: string;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}