Files
github-local-actions/src/views/githubLocalActionsTreeItem.ts
Sanjula Ganepola ecc5041e31 initial work for components view
Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
2024-09-24 23:47:53 -04:00

7 lines
279 B
TypeScript

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