bun-types 1.2.8-canary.20250327T140605 → 1.2.8-canary.20250329T140548

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/sqlite.d.ts CHANGED
@@ -58,6 +58,8 @@ declare module "bun:sqlite" {
58
58
  * ```ts
59
59
  * const db = new Database("mydb.sqlite", {readonly: true});
60
60
  * ```
61
+ *
62
+ * @category Database
61
63
  */
62
64
  constructor(
63
65
  filename?: string,
@@ -567,6 +569,8 @@ declare module "bun:sqlite" {
567
569
  *
568
570
  * This is returned by {@link Database.prepare} and {@link Database.query}.
569
571
  *
572
+ * @category Database
573
+ *
570
574
  * @example
571
575
  * ```ts
572
576
  * const stmt = db.prepare("SELECT * FROM foo WHERE bar = ?");
package/test.d.ts CHANGED
@@ -16,6 +16,8 @@
16
16
  declare module "bun:test" {
17
17
  /**
18
18
  * -- Mocks --
19
+ *
20
+ * @category Testing
19
21
  */
20
22
  export type Mock<T extends (...args: any[]) => any> = JestMock.Mock<T>;
21
23
 
@@ -168,6 +170,8 @@ declare module "bun:test" {
168
170
  *
169
171
  * @param label the label for the tests
170
172
  * @param fn the function that defines the tests
173
+ *
174
+ * @category Testing
171
175
  */
172
176
  export interface Describe {
173
177
  (fn: () => void): void;
@@ -352,6 +356,8 @@ declare module "bun:test" {
352
356
  * @param label the label for the test
353
357
  * @param fn the test function
354
358
  * @param options the test timeout or options
359
+ *
360
+ * @category Testing
355
361
  */
356
362
  export interface Test {
357
363
  (