UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

18 lines (17 loc) 522 B
import { BaseCommand } from '../abstract/BaseCommand.js'; /** * For now, only cleans the stores (logs/sentinels) * But this should permit to clean everytning (via flags) * * Eg: --containers --volumes --images --networks * Or: --all */ export default class CleanCommand extends BaseCommand { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { force: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; run(): Promise<void>; }