RemoteSourceProvider.icon

This commit is contained in:
João Moreno
2020-04-22 17:16:29 +02:00
parent 687131cb88
commit 3b0ba06a7b
2 changed files with 2 additions and 1 deletions

View File

@@ -198,6 +198,7 @@ export interface RemoteSource {
export interface RemoteSourceProvider {
readonly name: string;
readonly icon?: string; // codicon name
readonly supportsQuery?: boolean;
getRemoteSources(query?: string): ProviderResult<RemoteSource[]>;
}