Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
08063e1
Handle tags and move out events
kevin-dp Dec 1, 2025
ae47ca0
Update electric-sql ts-client lib to preview package
kevin-dp Dec 1, 2025
f404aa1
Unit tests for tags
kevin-dp Dec 1, 2025
7842d5b
Changeset
kevin-dp Dec 1, 2025
82dd570
Lockfile
kevin-dp Dec 1, 2025
01316ec
Add unit test to check with tags that are structurally equal but diff…
kevin-dp Dec 1, 2025
a300abf
Switch to string tags with values delimited by pipe character
kevin-dp Dec 1, 2025
1c9d1a8
Lockfile
kevin-dp Dec 1, 2025
14424e0
Remove tag from local cache when it is removed from a tag set
kevin-dp Dec 1, 2025
e35339a
Correctly handle rows without tags in progressive mode
kevin-dp Dec 1, 2025
bb0d818
Add test to check that delete cleans up tags
kevin-dp Dec 1, 2025
04ee017
Clean tracked tags for row when row is deleted
kevin-dp Dec 1, 2025
b53a7e6
e2e tests for move ins and out
kevin-dp Dec 2, 2025
1677f2c
Fix tag indexing
kevin-dp Dec 2, 2025
fed3b4c
Fix tests
kevin-dp Dec 2, 2025
071f195
Renamed test
kevin-dp Dec 2, 2025
f2721a2
Address feedback (part 1)
kevin-dp Dec 2, 2025
6af3502
Extract duplicated code
kevin-dp Dec 2, 2025
50bfa0b
Removed impossible branch and fix tag unit tests to mock correct Elec…
kevin-dp Dec 2, 2025
629a031
Fix types in tests
kevin-dp Dec 2, 2025
b5103ff
ci: apply automated fixes
autofix-ci[bot] Dec 8, 2025
e413d8a
Track state of rows in TX to be able to delete rows on a move out
kevin-dp Dec 8, 2025
517d4cd
ci: apply automated fixes
autofix-ci[bot] Dec 8, 2025
890521e
Updated lockfile
kevin-dp Dec 8, 2025
e3360cb
ci: apply automated fixes
autofix-ci[bot] Dec 8, 2025
1b5153e
Updated lockfile
kevin-dp Dec 8, 2025
6f60a38
Lockfile
kevin-dp Dec 8, 2025
99225fb
Update ts-client versions and lockfiles
kevin-dp Dec 8, 2025
c046b58
Do not rename test suite on import
kevin-dp Dec 8, 2025
617bc2c
Run e2e test suite for moves on all sync modes
kevin-dp Dec 8, 2025
e7f1f3b
ci: apply automated fixes
autofix-ci[bot] Dec 8, 2025
a424fb6
Add some sleep time to reduce flakiness
kevin-dp Dec 8, 2025
819e2da
Add some extra wait time to ensure users exist before creating posts
kevin-dp Dec 8, 2025
d5b1952
Await users before inserting posts
kevin-dp Dec 8, 2025
41df86c
ci: apply automated fixes
autofix-ci[bot] Dec 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/witty-animals-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@tanstack/electric-db-collection': patch
---

Support tagged rows and move out events in Electric collection.
6 changes: 3 additions & 3 deletions docs/reference/classes/AggregateFunctionNotInSelectError.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -123,7 +123,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -195,7 +195,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/AggregateNotSupportedError.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -119,7 +119,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -191,7 +191,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -117,7 +117,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -189,7 +189,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionConfigurationError.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -130,7 +130,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -202,7 +202,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionInErrorStateError.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -127,7 +127,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -199,7 +199,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionInputNotFoundError.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -137,7 +137,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -209,7 +209,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionIsInErrorStateError.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -117,7 +117,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -189,7 +189,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionOperationError.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -135,7 +135,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -207,7 +207,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionRequiresConfigError.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -117,7 +117,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -189,7 +189,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionRequiresSyncConfigError.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -117,7 +117,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -189,7 +189,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/CollectionStateError.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -130,7 +130,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -202,7 +202,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/DeleteKeyNotFoundError.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -123,7 +123,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -195,7 +195,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/DistinctRequiresSelectError.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -117,7 +117,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -189,7 +189,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/classes/DuplicateAliasInSubqueryError.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Defined in: node\_modules/.pnpm/typescript@5.9.3/node\_modules/typescript/lib/li
static stackTraceLimit: number;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:68
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:68

The `Error.stackTraceLimit` property specifies the number of stack frames
collected by a stack trace (whether generated by `new Error().stack` or
Expand All @@ -131,7 +131,7 @@ not capture any frames.
static captureStackTrace(targetObject, constructorOpt?): void;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:52
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:52

Creates a `.stack` property on `targetObject`, which when accessed returns
a string representing the location in the code at which
Expand Down Expand Up @@ -203,7 +203,7 @@ a();
static prepareStackTrace(err, stackTraces): any;
```

Defined in: node\_modules/.pnpm/@types+node@24.7.0/node\_modules/@types/node/globals.d.ts:56
Defined in: node\_modules/.pnpm/@types+node@24.10.1/node\_modules/@types/node/globals.d.ts:56

#### Parameters

Expand Down
Loading
Loading