/** * @athenna/config * * (c) Victor Tesoura JĂșnior * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare global { /** * Return the env value if found or the defaultValue. * Env function will also autoCast boolean and number * string values. */ export function Env(env: string, defaultValue?: any, autoCast?: boolean): T; } export {};