1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

规范插件代码结构

This commit is contained in:
2024-04-04 15:08:35 +08:00
parent a2aad3d24d
commit 9105f2c6a0
4 changed files with 76 additions and 52 deletions

View File

@@ -0,0 +1,9 @@
import * as vscode from 'vscode';
interface ExtendedQuickPickItem extends vscode.QuickPickItem {
value: string;
}
type QuickPickItemEx = ExtendedQuickPickItem | vscode.QuickPickItem;
export default QuickPickItemEx;