UNPKG

env-type-defs

Version:

Automatically generate TypeScript type definitions for environment variables based on the content of your env files.

6 lines (5 loc) 122 B
type envT = { [key: string]: string; }; export declare const generateEnvTypes: (pathArg?: string) => envT; export {};