Fix typings (#22747)

This commit is contained in:
Charles Gagnon
2023-04-16 16:36:47 -07:00
committed by GitHub
parent 89797e2e94
commit 2d25c8626f
2 changed files with 5 additions and 6 deletions

6
src/sql/azdata.d.ts vendored
View File

@@ -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;