Skip to content

Commit

Permalink
updating types file
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjin committed Dec 4, 2024
1 parent 273e7dd commit 0c16177
Showing 1 changed file with 8 additions and 22 deletions.
30 changes: 8 additions & 22 deletions src/sql/azdata.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -671,28 +671,6 @@ declare module 'azdata' {
name: string;
}

export interface ConnectionOption {
name: string;

displayName: string;

description: string;

groupName: string;

valueType: ServiceOptionType;

specialValueType: ConnectionOptionSpecialType;

defaultValue: string;

categoryValues: CategoryValue[];

isIdentity: boolean;

isRequired: boolean;
}

export interface ConnectionProviderOptions {
options: ConnectionOption[];
}
Expand All @@ -706,6 +684,8 @@ declare module 'azdata' {

groupName: string;

groupDisplayName: string;

valueType: ServiceOptionType;

defaultValue: string;
Expand All @@ -719,6 +699,12 @@ declare module 'azdata' {
isArray: boolean;
}

export interface ConnectionOption extends ServiceOption {
specialValueType: ConnectionOptionSpecialType;

isIdentity: boolean;
}

export interface AdminServicesOptions {
databaseInfoOptions: ServiceOption[];

Expand Down

0 comments on commit 0c16177

Please sign in to comment.