mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Lint azdata.d.ts (#13728)
This commit is contained in:
20
src/sql/azdata.d.ts
vendored
20
src/sql/azdata.d.ts
vendored
@@ -2104,7 +2104,7 @@ declare module 'azdata' {
|
|||||||
* Launches a flyout dialog that will display the information on how to complete device
|
* Launches a flyout dialog that will display the information on how to complete device
|
||||||
* code OAuth login to the user. Only one flyout can be opened at once and each must be closed
|
* code OAuth login to the user. Only one flyout can be opened at once and each must be closed
|
||||||
* by calling {@link endAutoOAuthDeviceCode}.
|
* by calling {@link endAutoOAuthDeviceCode}.
|
||||||
* @param providerId ID of the provider that's requesting the flyout be opened
|
* @param providerId ID of the provider that's requesting the flyout be opened
|
||||||
*/
|
*/
|
||||||
export function beginAutoOAuthDeviceCode(providerId: string, title: string, message: string, userCode: string, uri: string): Thenable<void>;
|
export function beginAutoOAuthDeviceCode(providerId: string, title: string, message: string, userCode: string, uri: string): Thenable<void>;
|
||||||
|
|
||||||
@@ -3223,9 +3223,9 @@ declare module 'azdata' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum ColumnSizingMode {
|
export enum ColumnSizingMode {
|
||||||
ForceFit = 0, // all columns will be sized to fit in viewable space, no horiz scroll bar
|
ForceFit = 0, // all columns will be sized to fit in viewable space, no horiz scroll bar
|
||||||
AutoFit = 1, // columns will be ForceFit up to a certain number; currently 3. At 4 or more the behavior will switch to NO force fit
|
AutoFit = 1, // columns will be ForceFit up to a certain number; currently 3. At 4 or more the behavior will switch to NO force fit
|
||||||
DataFit = 2 // columns use sizing based on cell data, horiz scroll bar present if more cells than visible in view area
|
DataFit = 2 // columns use sizing based on cell data, horiz scroll bar present if more cells than visible in view area
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TableComponentProperties extends ComponentProperties {
|
export interface TableComponentProperties extends ComponentProperties {
|
||||||
@@ -4539,12 +4539,12 @@ declare module 'azdata' {
|
|||||||
* provider are defined in the `package.json:
|
* provider are defined in the `package.json:
|
||||||
* ```json
|
* ```json
|
||||||
* {
|
* {
|
||||||
* "contributes": {
|
* "contributes": {
|
||||||
* "notebook.providers": [{
|
* "notebook.providers": [{
|
||||||
* "provider": "providername",
|
* "provider": "providername",
|
||||||
* "fileExtensions": ["FILEEXT"]
|
* "fileExtensions": ["FILEEXT"]
|
||||||
* }]
|
* }]
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
* @param notebook provider
|
* @param notebook provider
|
||||||
|
|||||||
Reference in New Issue
Block a user