This commit is contained in:
Johannes Rieken
2020-05-19 16:22:55 +02:00
parent a267564138
commit 7ab052aec4
7 changed files with 91 additions and 1 deletions

View File

@@ -393,6 +393,7 @@ export interface MainThreadLanguageFeaturesShape extends IDisposable {
export interface MainThreadLanguagesShape extends IDisposable {
$getLanguages(): Promise<string[]>;
$changeLanguage(resource: UriComponents, languageId: string): Promise<void>;
$tokensAtPosition(resource: UriComponents, position: IPosition): Promise<undefined | { type: modes.StandardTokenType, range: IRange }>;
}
export interface MainThreadMessageOptions {