react-azure-config
Version:
🚀 The Ultimate Multi-App Configuration Library! CRITICAL BUG FIXES: Prefixed environment keys no longer sent to Azure. Complete architectural redesign with bulletproof fallback system. Enterprise-grade Azure integration and monorepo support.
17 lines • 566 B
TypeScript
export declare class ConfigurationServer {
private options;
private running;
private mockConfig;
constructor(options: any);
start(): Promise<void>;
stop(): Promise<void>;
isServerRunning(): boolean;
getPort(): number;
getConfiguration(): Promise<any>;
getConfigValue(key: string): Promise<any>;
refreshConfiguration(): Promise<void>;
getHealthStatus(): Promise<any>;
getExpressApp(): any;
}
export declare const createConfigServer: (options: any) => ConfigurationServer;
//# sourceMappingURL=config-server.d.ts.map