16 lines
632 B
TypeScript
16 lines
632 B
TypeScript
import { ThemeIcon, TreeItem, TreeItemCollapsibleState } from "vscode";
|
|
import { GithubLocalActionsTreeItem } from "../githubLocalActionsTreeItem";
|
|
|
|
export default class ContainerEnginesTreeItem extends TreeItem implements GithubLocalActionsTreeItem {
|
|
static contextValue = 'githubLocalActions.containerEngines';
|
|
|
|
constructor() {
|
|
super('Container Engines', TreeItemCollapsibleState.Collapsed);
|
|
this.contextValue = ContainerEnginesTreeItem.contextValue;
|
|
this.iconPath = new ThemeIcon('server-process');
|
|
}
|
|
|
|
async getChildren(): Promise<GithubLocalActionsTreeItem[]> {
|
|
return [];
|
|
}
|
|
} |