Skip to content

Commit 1d88900

Browse files
committed
[CONJS-136] typescript eslint correction
1 parent 510101a commit 1d88900

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

types/index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -649,18 +649,18 @@ export interface SqlError extends Error {
649649

650650
interface 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

665665
export const enum TypeNumbers {
666666
DECIMAL = 0,

0 commit comments

Comments
 (0)