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

interface ImportMeta {
  readonly env: ImportMetaEnv;
}