interface EnvEntry { name: string; url: string; user: string; active: boolean; } export interface ConfigListDeps { listEnvs: () => Promise; } export async function configListAction(deps: ConfigListDeps): Promise { return deps.listEnvs(); }