UNPKG

free-mobile-sms-api

Version:

Free Mobile SMS API - Give you a simplified way to use the official SMS API powered by Free mobile

11 lines (9 loc) 276 B
import {cleanEnv, str} from "envalid"; export interface Env { readonly FREE_MOBILE_API_USER: string readonly FREE_MOBILE_API_PASSWORD: string } export const env: Readonly<Env> = cleanEnv(process.env, { FREE_MOBILE_API_USER: str() , FREE_MOBILE_API_PASSWORD: str() })