mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
change enum type to conform to new connection (#1053)
This commit is contained in:
committed by
Abbie Petchtes
parent
6dca896768
commit
0315020cf0
14
src/sql/sqlops.d.ts
vendored
14
src/sql/sqlops.d.ts
vendored
@@ -330,13 +330,13 @@ declare module 'sqlops' {
|
||||
}
|
||||
|
||||
export enum ServiceOptionType {
|
||||
string = 0,
|
||||
multistring = 1,
|
||||
password = 2,
|
||||
number = 3,
|
||||
category = 4,
|
||||
boolean = 5,
|
||||
object = 6
|
||||
string = 'string',
|
||||
multistring = 'multistring',
|
||||
password = 'password',
|
||||
number = 'number',
|
||||
category = 'category',
|
||||
boolean = 'boolean',
|
||||
object = 'object'
|
||||
}
|
||||
|
||||
export enum ConnectionOptionSpecialType {
|
||||
|
||||
Reference in New Issue
Block a user