Add icon for resource view items (#13009)

* Add icon for resource view items

* Remove unneeded stuff
This commit is contained in:
Charles Gagnon
2020-10-21 07:43:04 -07:00
committed by GitHub
parent f783a26a56
commit 660c1d6f21
4 changed files with 45 additions and 12 deletions

View File

@@ -4,6 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import { Emitter, Event } from 'vs/base/common/event';
import { URI } from 'vs/base/common/uri';
import { Registry } from 'vs/platform/registry/common/platform';
export const Extensions = {
@@ -12,7 +13,7 @@ export const Extensions = {
export interface ResourceType {
readonly id: string;
readonly icon: string;
readonly icon: URI;
readonly name: string;
}