We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Types
1 parent 04601dd commit 04eeb6aCopy full SHA for 04eeb6a
test/tsc-build/mysql/constants/Types.ts
@@ -0,0 +1,7 @@
1
+import { mysql } from '../../index.js';
2
+
3
+const BLOB: number = mysql.Types.BLOB;
4
+const DECIMAL: string = mysql.Types[0x00];
5
+const DOUBLE: string = mysql.Types[5];
6
7
+console.log(BLOB, DECIMAL, DOUBLE);
test/tsc-build/promise/constants/Types.ts
+import { mysqlp as mysql } from '../../index.js';
0 commit comments