Add app quality to extension API (#20731)

* Add app quality to extension API

* Comment

* Special case rc1 to stable
This commit is contained in:
Charles Gagnon
2022-10-05 14:42:23 -07:00
committed by GitHub
parent 29daa72ef1
commit 7b05194e77
9 changed files with 48 additions and 8 deletions

View File

@@ -8,6 +8,23 @@
import * as vscode from 'vscode';
declare module 'azdata' {
export namespace env {
/**
* Well-known app quality values
*/
export enum AppQuality {
stable = 'stable',
insider = 'insider',
dev = 'dev'
}
/**
* The version of Azure Data Studio this is currently running as - such as `stable`, or `insider`
*/
export const quality: AppQuality | string | undefined;
}
export namespace nb {
export interface NotebookDocument {
/**