9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
/**
|
|
* Read an environment variable.
|
|
*
|
|
* Trims beginning and trailing whitespace.
|
|
*
|
|
* Will return undefined if the environment variable doesn't exist or cannot be accessed.
|
|
*/
|
|
export declare const readEnv: (env: string) => string | undefined;
|
|
//# sourceMappingURL=env.d.ts.map
|