const namespace = "oAuth"; declare module "actionhero" { export interface ActionheroConfigInterface { [namespace]: ReturnType; } } export const DEFAULT = { [namespace]: () => { return { host: process.env.GROUPAROO_AUTH_URL, }; }, };