mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
7 lines
319 B
TypeScript
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;
|