@enspirit/emb
Version:
A replacement for our Makefile-for-monorepos
15 lines (14 loc) • 404 B
TypeScript
import { FlavoredCommand } from '../../index.js';
export interface SecretInfo {
component?: string;
key?: string;
path: string;
provider: string;
usageCount: number;
}
export default class SecretsIndex extends FlavoredCommand<typeof SecretsIndex> {
static description: string;
static enableJsonFlag: boolean;
static examples: string[];
run(): Promise<SecretInfo[]>;
}