Align signatures with other providers.

This commit is contained in:
rebornix
2017-09-08 14:11:44 -07:00
parent f0ecb26ace
commit 3753e0e1d2
8 changed files with 11 additions and 11 deletions

View File

@@ -538,7 +538,7 @@ export interface ExtHostLanguageFeaturesShape {
$provideDocumentLinks(handle: number, resource: URI): TPromise<modes.ILink[]>;
$resolveDocumentLink(handle: number, link: modes.ILink): TPromise<modes.ILink>;
$provideDocumentColors(handle: number, resource: URI): TPromise<IRawColorInfo[]>;
$resolveColor(handle: number, color: modes.IColor, colorFormat: modes.ColorFormat): TPromise<string>;
$resolveDocumentColor(handle: number, color: modes.IColor, colorFormat: modes.ColorFormat): TPromise<string>;
}
export interface ExtHostQuickOpenShape {