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.
1 parent 9134667 commit 748d7aeCopy full SHA for 748d7ae
packages/@glimmer/validator/lib/collections/array.ts
@@ -200,7 +200,7 @@ Object.setPrototypeOf(TrackedArray.prototype, Array.prototype);
200
export function trackedArray<T = unknown>(
201
data?: T[],
202
options?: { equals?: (a: T, b: T) => boolean; description?: string }
203
-): TrackedArray<T> {
+): Array<T> {
204
return new TrackedArray(data ?? [], {
205
equals: options?.equals ?? Object.is,
206
description: options?.description,
0 commit comments