UNPKG

@roots/bud

Version:

Configurable, extensible build tools for modern single and multi-page web applications

29 lines (28 loc) 620 B
import BudCommand from '@roots/bud/cli/commands'; /** * bud doctor command */ export default class DoctorCommand extends BudCommand { /** * {@link BudCommand.paths} */ static paths: string[][]; /** * {@link BudCommand.usage} */ static usage: import("@roots/bud-support/clipanion").Usage; error: Error | string; /** * Error handler override */ catch(error?: Error | string): Promise<void>; /** * Silent flag override */ silent: boolean; /** * Execute command */ execute(): Promise<void>; makeTimer: () => () => string; }