Behave Test Runner Extension - v1.1.7
    Preparing search index...

    Interface CommandRegistration

    Command registration interface

    interface CommandRegistration {
        command: string;
        callback: (...args: CommandArguments) => void | Promise<void>;
        title?: string;
    }
    Index

    Properties

    command: string
    callback: (...args: CommandArguments) => void | Promise<void>
    title?: string