mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -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
|
* Namespace for connection management
|
||||||
*/
|
*/
|
||||||
export namespace connection {
|
export namespace connection {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Well-known Authentication types commonly supported by connection providers.
|
* Well-known Authentication types commonly supported by connection providers.
|
||||||
*/
|
*/
|
||||||
@@ -3627,6 +3626,11 @@ declare module 'azdata' {
|
|||||||
title?: string | undefined;
|
title?: string | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Supported values for aria-live accessibility attribute
|
||||||
|
*/
|
||||||
|
export type AriaLiveValue = 'polite' | 'assertive' | 'off';
|
||||||
|
|
||||||
export interface InputBoxProperties extends ComponentProperties {
|
export interface InputBoxProperties extends ComponentProperties {
|
||||||
value?: string | undefined;
|
value?: string | undefined;
|
||||||
ariaLive?: AriaLiveValue | undefined;
|
ariaLive?: AriaLiveValue | undefined;
|
||||||
|
|||||||
5
src/sql/azdata.proposed.d.ts
vendored
5
src/sql/azdata.proposed.d.ts
vendored
@@ -1768,11 +1768,6 @@ declare module 'azdata' {
|
|||||||
ariaLive?: AriaLiveValue
|
ariaLive?: AriaLiveValue
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Supported values for aria-live accessibility attribute
|
|
||||||
*/
|
|
||||||
export type AriaLiveValue = 'polite' | 'assertive' | 'off';
|
|
||||||
|
|
||||||
export interface ContainerProperties extends ComponentProperties {
|
export interface ContainerProperties extends ComponentProperties {
|
||||||
/**
|
/**
|
||||||
* Corresponds to the aria-live accessibility attribute for this component
|
* Corresponds to the aria-live accessibility attribute for this component
|
||||||
|
|||||||
Reference in New Issue
Block a user