mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 09:35:37 -05:00
Fix typings (#22747)
This commit is contained in:
6
src/sql/azdata.d.ts
vendored
6
src/sql/azdata.d.ts
vendored
@@ -108,7 +108,6 @@ declare module 'azdata' {
|
||||
* Namespace for connection management
|
||||
*/
|
||||
export namespace connection {
|
||||
|
||||
/**
|
||||
* Well-known Authentication types commonly supported by connection providers.
|
||||
*/
|
||||
@@ -3627,6 +3626,11 @@ declare module 'azdata' {
|
||||
title?: string | undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* Supported values for aria-live accessibility attribute
|
||||
*/
|
||||
export type AriaLiveValue = 'polite' | 'assertive' | 'off';
|
||||
|
||||
export interface InputBoxProperties extends ComponentProperties {
|
||||
value?: string | undefined;
|
||||
ariaLive?: AriaLiveValue | undefined;
|
||||
|
||||
Reference in New Issue
Block a user