@servicenow/sdk - v4.4.1
    Preparing search index...

    Arguments for completions messages.

    interface CompletionsRequestArgs {
        file: string;
        includeExternalModuleExports?: boolean;
        includeInsertTextCompletions?: boolean;
        line: number;
        offset: number;
        prefix?: string;
        projectFileName?: string;
        triggerCharacter?: tsc.CompletionsTriggerCharacter;
        triggerKind?: tsc.CompletionTriggerKind;
    }

    Hierarchy (View Summary)

    Index

    Properties

    file: string

    The file for the request (absolute pathname required).

    includeExternalModuleExports?: boolean

    Use UserPreferences.includeCompletionsForModuleExports

    includeInsertTextCompletions?: boolean

    Use UserPreferences.includeCompletionsWithInsertText

    line: number

    The line number for the request (1-based).

    offset: number

    The character offset (on the line) for the request (1-based).

    prefix?: string

    Optional prefix to apply to possible completions.

    projectFileName?: string
    triggerCharacter?: tsc.CompletionsTriggerCharacter

    Character that was responsible for triggering completion. Should be undefined if a user manually requested completion.