x4js - v2.2.49
    Preparing search index...

    Represents a parameter of a callable-signature. A parameter can have a label and a doc-comment.

    interface ParameterInformation {
        documentation?: string | IMarkdownString;
        label: string | [number, number];
    }
    Index
    documentation?: string | IMarkdownString

    The human-readable doc-comment of this signature. Will be shown in the UI but can be omitted.

    label: string | [number, number]

    The label of this signature. Will be shown in the UI.