import { QuickPickItem, workspace, WorkspaceConfiguration } from "vscode"; export interface ListItem { answered: boolean; name: string; question_id: number; publish_date: string; detail: string; type: "md" | "js"; } export interface IQuickItemEx extends QuickPickItem { value: T; }