7 lines
279 B
TypeScript
7 lines
279 B
TypeScript
import { MarkdownString, TreeItem } from "vscode";
|
|
|
|
export interface GithubLocalActionsTreeItem extends TreeItem {
|
|
getChildren: () => GithubLocalActionsTreeItem[] | Promise<GithubLocalActionsTreeItem[]>;
|
|
|
|
getToolTip?: () => Promise<MarkdownString | string | undefined>;
|
|
} |