UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

13 lines (12 loc) 390 B
import { FlavoredCommand } from '../../index.js'; export interface ProviderInfo { name: string; status: 'connected' | 'not_configured'; type: string; } export default class SecretsProviders extends FlavoredCommand<typeof SecretsProviders> { static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise<ProviderInfo[]>; }