declapract
Version:
A tool to declaratively define best practices, maintainable evolve them, and scalably enforce them.
10 lines (9 loc) • 376 B
TypeScript
import { Command } from '@oclif/core';
export default class Validate extends Command {
static description: string;
static flags: {
help: import("@oclif/core/lib/interfaces").BooleanFlag<void>;
config: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
};
run(): Promise<void>;
}