Files
Fluxup_PAP/node_modules/@expo/env/build/parse.d.ts
2026-03-10 16:18:05 +00:00

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;