Skip to content

Commit 17581eb

Browse files
committed
consistency
1 parent 748d7ae commit 17581eb

File tree

1 file changed

+1
-1
lines changed
  • packages/@glimmer/validator/lib/collections

1 file changed

+1
-1
lines changed

packages/@glimmer/validator/lib/collections/array.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Object.setPrototypeOf(TrackedArray.prototype, Array.prototype);
200200
export function trackedArray<T = unknown>(
201201
data?: T[],
202202
options?: { equals?: (a: T, b: T) => boolean; description?: string }
203-
): Array<T> {
203+
): T[] {
204204
return new TrackedArray(data ?? [], {
205205
equals: options?.equals ?? Object.is,
206206
description: options?.description,

0 commit comments

Comments
 (0)