6 lines
242 B
TypeScript
6 lines
242 B
TypeScript
export interface EnvOutput {
|
|
[name: string]: string | undefined;
|
|
}
|
|
export declare function parse<T extends EnvOutput = EnvOutput>(contents: string): T;
|
|
export declare function expand(inputEnv: EnvOutput, sourceEnv: EnvOutput): EnvOutput;
|