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 748d7ae commit 17581ebCopy full SHA for 17581eb
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
-): Array<T> {
+): T[] {
204
return new TrackedArray(data ?? [], {
205
equals: options?.equals ?? Object.is,
206
description: options?.description,
0 commit comments