osr-mono/packages/osr-commons/profile.d.ts
2025-01-29 19:48:23 +01:00

20 lines
471 B
TypeScript

interface EnvVariables {
[key: string]: string;
}
interface EnvConfig {
includes: string[];
variables: EnvVariables;
}
export interface IProfile {
includes: string[];
variables: EnvVariables;
env?: {
[key: string]: EnvConfig;
};
}
export declare const resolveConfig: (config: any) => any;
export declare const parseProfile: (profilePath: string, profile: IProfile, options?: {
env: string;
}, rel?: string) => IProfile;
export {};