mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
Enable status bar for notebooks (#14817)
* enable status bar for notebooks * add onCellExecutionStart event to notebook service * fix test, change var name
This commit is contained in:
@@ -129,6 +129,16 @@ export interface INotebookService {
|
||||
* @param isTrusted True if notebook is to be set to trusted, false otherwise.
|
||||
*/
|
||||
setTrusted(notebookUri: URI, isTrusted: boolean): Promise<boolean>;
|
||||
|
||||
/**
|
||||
* Event that gets fired when a cell is executed.
|
||||
*/
|
||||
onCodeCellExecutionStart: Event<void>;
|
||||
|
||||
/**
|
||||
* Fires the onCodeCellExecutionStart event.
|
||||
*/
|
||||
notifyCellExecutionStarted(): void;
|
||||
}
|
||||
|
||||
export interface INotebookProvider {
|
||||
|
||||
Reference in New Issue
Block a user