Files
portfolio2023/node_modules/@adonisjs/ace/build/src/utils/validateCommand.d.ts
T
2023-11-24 22:35:41 +01:00

7 lines
319 B
TypeScript

import { CommandConstructorContract } from '../Contracts';
/**
* Validates the command static properties to ensure that all the
* values are correctly defined for a command to be executed.
*/
export declare function validateCommand(command: any, commandPath?: string): asserts command is CommandConstructorContract;