UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

19 lines (18 loc) 553 B
import { FlavoredCommand } from '../../index.js'; export interface ValidationResult { error?: string; key?: string; path: string; provider: string; status: 'error' | 'ok'; } export default class SecretsValidate extends FlavoredCommand<typeof SecretsValidate> { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { 'fail-fast': import("@oclif/core/interfaces").BooleanFlag<boolean>; }; run(): Promise<ValidationResult[]>; private validateSecret; }