11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import * as vscode from 'vscode';
|
|
|
|
interface ExtendedQuickPickItem extends vscode.QuickPickItem {
|
|
value: string;
|
|
}
|
|
|
|
// type QuickPickItemEx = ExtendedQuickPickItem | vscode.QuickPickItem;
|
|
type QuickPickItemEx = ExtendedQuickPickItem;
|
|
|
|
export default QuickPickItemEx;
|