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.
7 lines • 504 B
TypeScript
import type { ConfigurationValue, ConfigResult } from '../types';
export { useConfigContext, useConfigProvider } from './context';
export declare const useConfig: <T = ConfigurationValue>() => ConfigResult<T>;
export declare const useConfigValue: <T = unknown>(key: string, defaultValue?: T) => T | undefined;
export declare const useFeature: (featureName: string) => boolean;
export declare const useEnv: <T = unknown>(key: string, defaultValue?: T) => T | undefined;
//# sourceMappingURL=hooks.d.ts.map