@mcma/core
Version:
Node module with type definitions and helper utils for the EBU MCMA framework
13 lines (12 loc) • 377 B
TypeScript
export declare class ConfigVariables {
private static instance;
static getInstance(): ConfigVariables;
private readonly _keys;
private readonly _vars;
constructor(variables?: {
[key: string]: string | undefined;
});
keys(): string[];
get(name: string): string;
getOptional(name: string, defaultValue?: string): string | undefined;
}