Interface ExecuteCommandMiddleware

interface ExecuteCommandMiddleware {
    executeCommand?: (
        this: void,
        command: string,
        args: any[],
        next: ExecuteCommandSignature,
    ) => any;
}

Properties

Properties

executeCommand?: (
    this: void,
    command: string,
    args: any[],
    next: ExecuteCommandSignature,
) => any