Renewed code to follow DefinitelyTyped's contribution guidelines.

This commit is contained in:
George Wu
2015-12-11 22:09:48 +08:00
parent 5c9b77c2db
commit 98339951b7
2 changed files with 22 additions and 26 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ var selectRecordsStatement =
"SELECT * FROM test_table;";
db.each(
selectRecordsStatement,
(obj: SQL.SQLValueObject): void => {
(obj: { [columnName: string]: number | string | Uint8Array }): void => {
console.log(obj);
},
(): void => {