UNPKG

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.

11 lines • 807 B
import type { ConfigurationValue } from '../types'; export declare const setNestedProperty: (obj: Record<string, unknown>, path: string, value: unknown) => void; export declare const getNestedProperty: <T = unknown>(obj: unknown, path: string) => T | undefined; export declare const transformEnvKeyToConfigPath: (envKey: string) => string; export declare const getDefaultConfiguration: (environment?: string) => ConfigurationValue; export declare const getDefaultBrowserConfiguration: () => ConfigurationValue; export declare const createCacheKey: (key: string) => string; export declare const isKeyVaultReference: (value: unknown) => boolean; export declare const delay: (ms: number) => Promise<void>; export declare const parseValue: (value: unknown) => unknown; //# sourceMappingURL=config-utils.d.ts.map