Interface CodeLenseCommand

Represents a command associated with a code lens

interface CodeLenseCommand {
    arguments?: any;
    id?: string;
    title: string;
}

Properties

Properties

arguments?: any

Argument(s) to pass to the command when executed

id?: string

Command identifier that will be executed

title: string

Display title for the code lens

Generated using TypeDoc