Remove API compatibility layer for VS Code notebook extensions (#21225)

This commit is contained in:
Cory Rivera
2022-11-15 10:38:41 -08:00
committed by GitHub
parent 1105e4d15c
commit a37d6230f9
41 changed files with 74 additions and 2197 deletions

View File

@@ -45,25 +45,6 @@ declare module 'azdata' {
* The list of languages that are supported for this kernel.
*/
supportedLanguages?: string[];
/**
* The original name for this kernel.
*/
oldName?: string;
/**
* The original display name for this kernel.
*/
oldDisplayName?: string;
/**
* The original language name for this kernel.
*/
oldLanguage?: string;
}
export interface ILanguageInfo {
/**
* The original name for this language.
*/
oldName?: string;
}
export interface IStandardKernel {
@@ -96,22 +77,10 @@ declare module 'azdata' {
}
export interface IExecuteRequest {
/**
* URI of the notebook document that is sending this execute request.
*/
notebookUri: vscode.Uri;
/**
* URI of the notebook cell that is sending this execute request.
*/
cellUri: vscode.Uri;
/**
* The language of the notebook document that is executing this request.
*/
language: string;
/**
* The index of the cell which the code being executed is from.
*/
cellIndex: number;
}
export interface INotebookMetadata {