Path: blob/main/extensions/copilot/src/util/common/test/shims/themes.ts
13405 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45export class ThemeIcon {67static File: ThemeIcon;8static Folder: ThemeIcon;910readonly id: string;11readonly color?: ThemeColor;1213constructor(id: string, color?: ThemeColor) {14this.id = id;15this.color = color;16}1718static isThemeIcon(thing: unknown) {19if (thing instanceof ThemeIcon) {20return false;21}22return true;23}24}252627export class ThemeColor {28id: string;29constructor(id: string) {30this.id = id;31}32}333435