@@ -21,13 +21,13 @@ await db.exec("INSERT INTO test (name) VALUES ('foo');");
2121
2222#### Constructors
2323
24- ##### new Database()
24+ ##### Constructor
2525
26- > ** new Database** (): [ ` Database ` ] ( sqlite.md #database)
26+ > ** new Database** (): [ ` Database ` ] ( #database )
2727
2828###### Returns
2929
30- [ ` Database ` ] ( sqlite.md #database)
30+ [ ` Database ` ] ( #database )
3131
3232#### Methods
3333
@@ -49,7 +49,7 @@ This method allows one or more SQL statements to be executed without returning a
4949
5050##### prepare()
5151
52- > ** prepare** (` sql ` : ` string ` ): ` Promise ` \< [ ` Statement ` ] ( sqlite.md #statement) \>
52+ > ** prepare** (` sql ` : ` string ` ): ` Promise ` \< [ ` Statement ` ] ( #statement ) \>
5353
5454Compiles a SQL statement into a [ prepared statement] ( https://www.sqlite.org/c3ref/stmt.html ) .
5555
@@ -61,7 +61,7 @@ Compiles a SQL statement into a [prepared statement](https://www.sqlite.org/c3re
6161
6262###### Returns
6363
64- ` Promise ` \< [ ` Statement ` ] ( sqlite.md #statement) \>
64+ ` Promise ` \< [ ` Statement ` ] ( #statement ) \>
6565
6666***
6767
@@ -72,19 +72,19 @@ Instead, instances are created via the database.prepare() method.
7272
7373#### Constructors
7474
75- ##### new Statement()
75+ ##### Constructor
7676
77- > ** new Statement** (): [ ` Statement ` ] ( sqlite.md #statement)
77+ > ** new Statement** (): [ ` Statement ` ] ( #statement )
7878
7979###### Returns
8080
81- [ ` Statement ` ] ( sqlite.md #statement)
81+ [ ` Statement ` ] ( #statement )
8282
8383#### Methods
8484
8585##### all()
8686
87- > ** all** \< ` T ` \> (...` params ` : [ ` Parameter ` ] ( sqlite.md #parameter) [ ] ): ` Promise ` \< ` T ` [ ] \>
87+ > ** all** \< ` T ` \> (...` params ` : [ ` Parameter ` ] ( #parameter ) [ ] ): ` Promise ` \< ` T ` [ ] \>
8888
8989This method executes a prepared statement and returns all results as an array of objects.
9090If the prepared statement does not return any results, this method returns an empty array.
@@ -100,15 +100,15 @@ The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_
100100
101101| Parameter | Type | Description |
102102| ------ | ------ | ------ |
103- | ...` params ` | [ ` Parameter ` ] ( sqlite.md #parameter) [ ] | The values to bind to the prepared statement. Named parameters are not supported. |
103+ | ...` params ` | [ ` Parameter ` ] ( #parameter ) [ ] | The values to bind to the prepared statement. Named parameters are not supported. |
104104
105105###### Returns
106106
107107` Promise ` \< ` T ` [ ] \>
108108
109109##### get()
110110
111- > ** get** \< ` T ` \> (...` params ` : [ ` Parameter ` ] ( sqlite.md #parameter) [ ] ): ` Promise ` \< ` undefined ` \| ` T ` \>
111+ > ** get** \< ` T ` \> (...` params ` : [ ` Parameter ` ] ( #parameter ) [ ] ): ` Promise ` \< ` T ` \| ` undefined ` \>
112112
113113This method executes a prepared statement and returns the first result as an object.
114114If the prepared statement does not return any results, this method returns undefined.
@@ -124,15 +124,15 @@ The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_
124124
125125| Parameter | Type | Description |
126126| ------ | ------ | ------ |
127- | ...` params ` | [ ` Parameter ` ] ( sqlite.md #parameter) [ ] | The values to bind to the prepared statement. Named parameters are not supported. |
127+ | ...` params ` | [ ` Parameter ` ] ( #parameter ) [ ] | The values to bind to the prepared statement. Named parameters are not supported. |
128128
129129###### Returns
130130
131- ` Promise ` \< ` undefined ` \| ` T ` \>
131+ ` Promise ` \< ` T ` \| ` undefined ` \>
132132
133133##### run()
134134
135- > ** run** (...` params ` : [ ` Parameter ` ] ( sqlite.md #parameter) [ ] ): ` Promise ` \< [ ` Result ` ] ( sqlite.md #result) \>
135+ > ** run** (...` params ` : [ ` Parameter ` ] ( #parameter ) [ ] ): ` Promise ` \< [ ` Result ` ] ( #result ) \>
136136
137137This method executes a prepared statement and returns an object summarizing the resulting changes.
138138The prepared statement [ parameters are bound] ( https://www.sqlite.org/c3ref/bind_blob.html ) using the values in params.
@@ -141,19 +141,19 @@ The prepared statement [parameters are bound](https://www.sqlite.org/c3ref/bind_
141141
142142| Parameter | Type | Description |
143143| ------ | ------ | ------ |
144- | ...` params ` | [ ` Parameter ` ] ( sqlite.md #parameter) [ ] | The values to bind to the prepared statement. Named parameters are not supported. |
144+ | ...` params ` | [ ` Parameter ` ] ( #parameter ) [ ] | The values to bind to the prepared statement. Named parameters are not supported. |
145145
146146###### Returns
147147
148- ` Promise ` \< [ ` Result ` ] ( sqlite.md #result) \>
148+ ` Promise ` \< [ ` Result ` ] ( #result ) \>
149149
150150## Type Aliases
151151
152152### OpenOptions
153153
154- > ** OpenOptions** : ` object `
154+ > ** OpenOptions** = ` object `
155155
156- #### Type declaration
156+ #### Properties
157157
158158##### busyTimeout?
159159
@@ -268,15 +268,15 @@ true
268268
269269### Parameter
270270
271- > ** Parameter** : ` null ` \| ` number ` \| ` bigint ` \| ` string ` \| ` Uint8Array `
271+ > ** Parameter** = ` null ` \| ` number ` \| ` bigint ` \| ` string ` \| ` Uint8Array `
272272
273273***
274274
275275### Result
276276
277- > ** Result** : ` object `
277+ > ** Result** = ` object `
278278
279- #### Type declaration
279+ #### Properties
280280
281281##### changes
282282
@@ -290,16 +290,16 @@ true
290290
291291### open()
292292
293- > ** open** (` options ` : [ ` OpenOptions ` ] ( sqlite.md #openoptions) ): ` Promise ` \< [ ` Database ` ] ( sqlite.md #database) \>
293+ > ** open** (` options ` : [ ` OpenOptions ` ] ( #openoptions ) ): ` Promise ` \< [ ` Database ` ] ( #database ) \>
294294
295295Open a SQLite database.
296296
297297#### Parameters
298298
299299| Parameter | Type | Description |
300300| ------ | ------ | ------ |
301- | ` options ` | [ ` OpenOptions ` ] ( sqlite.md #openoptions) | The options to open the database. |
301+ | ` options ` | [ ` OpenOptions ` ] ( #openoptions ) | The options to open the database. |
302302
303303#### Returns
304304
305- ` Promise ` \< [ ` Database ` ] ( sqlite.md #database) \>
305+ ` Promise ` \< [ ` Database ` ] ( #database ) \>
0 commit comments