export type ConfigOptions = { host: string; port: number; namespace?: string; }; export type Configuration = { get

(key: P & string): (T & ConfigOptions)[P]; };