Interface IDocumentInfo

interface IDocumentInfo {
    languageId: string;
    text: string;
    uri: string;
    version: number;
}

Implemented by

Properties

languageId: string

Language id of the document.

text: string

Text content of the document.

uri: string

URI of the virtual document.

version: number

Version of the virtual document.