mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 18:22:34 -05:00
Initial implementation for VSCode Notebook support (#17885)
This commit is contained in:
8
src/sql/azdata.proposed.d.ts
vendored
8
src/sql/azdata.proposed.d.ts
vendored
@@ -38,6 +38,10 @@ declare module 'azdata' {
|
||||
nbKernelAlias?: string
|
||||
}
|
||||
|
||||
export interface ICellOutput {
|
||||
id?: string; // Unique identifier for this cell output
|
||||
}
|
||||
|
||||
export interface IExecuteResult {
|
||||
data: any;
|
||||
}
|
||||
@@ -48,6 +52,10 @@ declare module 'azdata' {
|
||||
data: any;
|
||||
}
|
||||
|
||||
export interface IExecuteRequest {
|
||||
notebookUri?: vscode.Uri; // URI of the notebook document that is sending this execute request
|
||||
}
|
||||
|
||||
export interface INotebookMetadata {
|
||||
connection_name?: string;
|
||||
multi_connection_mode?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user