UNPKG

typed-environment-loader

Version:

typed-environment-loader is a lightweight utility for loading environment variables in a typed manner, ensuring type safety and consistency in your Node.js applications.

6 lines (5 loc) 204 B
import { ParserContext, ParserResult } from '../types'; import { BaseParser } from './base-parser'; export declare class EnumParser extends BaseParser { parse(context: ParserContext): ParserResult; }