Add language picker to notebook cells. (#18601)

This commit is contained in:
Cory Rivera
2022-03-02 10:25:55 -08:00
committed by GitHub
parent c34de52a03
commit 79cda5cbe5
10 changed files with 144 additions and 7 deletions

View File

@@ -1647,7 +1647,7 @@ registerAction2(class ClearCellOutputsAction extends NotebookCellAction {
}
});
interface ILanguagePickInput extends IQuickPickItem {
export interface ILanguagePickInput extends IQuickPickItem { // {{SQL CARBON EDIT}} Add export
languageId: string;
description: string;
}