File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -649,18 +649,18 @@ export interface SqlError extends Error {
649649
650650interface SqlErrorConstructor extends ErrorConstructor {
651651 new (
652- msg : string ,
653- fatal ?: boolean ,
654- info ?: { threadId ?: number } ,
655- sqlState ?: string | null ,
656- errno ?: number ,
657- additionalStack ?: string ,
658- addHeader ?: boolean ,
652+ msg : string ,
653+ fatal ?: boolean ,
654+ info ?: { threadId ?: number } ,
655+ sqlState ?: string | null ,
656+ errno ?: number ,
657+ additionalStack ?: string ,
658+ addHeader ?: boolean
659659 ) : SqlError ;
660660 readonly prototype : SqlError ;
661661}
662662
663- declare var SqlError : SqlErrorConstructor ;
663+ declare const SqlError : SqlErrorConstructor ;
664664
665665export const enum TypeNumbers {
666666 DECIMAL = 0 ,
You can’t perform that action at this time.
0 commit comments