File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
/* global
2
- ALLOC_NORMAL
3
2
FS
4
3
HEAP8
5
4
Module
6
5
_malloc
7
6
_free
8
- addFunction
9
- allocate
10
- allocateUTF8OnStack
11
7
getValue
12
8
intArrayFromString
13
- removeFunction
14
9
setValue
15
10
stackAlloc
16
11
stackRestore
22
17
23
18
"use strict" ;
24
19
20
+ /** @external @const @global */ var addFunction ;
21
+ /** @external @const @global */ var allocate ;
22
+ /** @external @const @global */ var ALLOC_NORMAL ;
23
+ /** @external @const @global */ var allocateUTF8OnStack ;
24
+ /** @external @const @global */ var removeFunction ;
25
+
25
26
/**
26
27
* @typedef {{Database:Database, Statement:Statement} } SqlJs
27
28
* @property {Database } Database A class that represents an SQLite database
@@ -877,7 +878,9 @@ Module["onRuntimeInitialized"] = function onRuntimeInitialized() {
877
878
}} Database.QueryExecResult
878
879
* @property {Array<string> } columns the name of the columns of the result
879
880
* (as returned by {@link Statement.getColumnNames})
880
- * @property {Array<Array<Database.SqlValue>> } values one array per row, containing
881
+ * @property {
882
+ * Array<Array<Database.SqlValue>>
883
+ * } values one array per row, containing
881
884
* the column values
882
885
*/
883
886
You can’t perform that action at this time.
0 commit comments