The details of a completion request.

interface IRequest {
    mimeType?: string;
    offset: number;
    text: string;
}

Properties

Properties

mimeType?: string

The MIME type under the cursor.

offset: number

The cursor offset position within the text being completed.

text: string

The text being completed.