Skip to content

Instantly share code, notes, and snippets.

View alexweininger's full-sized avatar
💭
🐕‍🦺

Alex Weininger alexweininger

💭
🐕‍🦺
View GitHub Profile
import { GenericResource } from '@azure/arm-resources';
import { AzExtTreeItem } from '@microsoft/vscode-azext-utils';
import * as vscode from 'vscode';
interface TreeNodeConfiguration {
readonly label: string;
readonly description?: string;
readonly icon?: vscode.ThemeIcon;
readonly contextValue?: string;
}