change enum type to conform to new connection (#1053)

This commit is contained in:
Anthony Dresser
2018-04-04 11:40:14 -07:00
committed by Abbie Petchtes
parent 6dca896768
commit 0315020cf0
8 changed files with 52 additions and 51 deletions

14
src/sql/sqlops.d.ts vendored
View File

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