File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/@glimmer/validator Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ if (Reflect.has(globalThis, GLIMMER_VALIDATOR_REGISTRATION)) {
88
99Reflect . set ( globalThis , GLIMMER_VALIDATOR_REGISTRATION , true ) ;
1010
11- export { TrackedArray , trackedArray } from './lib/collections/array' ;
11+ export { trackedArray } from './lib/collections/array' ;
1212export { debug } from './lib/debug' ;
1313export { dirtyTagFor , tagFor , type TagMeta , tagMetaFor } from './lib/meta' ;
1414export { trackedData } from './lib/tracked-data' ;
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ function convertToInt(prop: number | string | symbol): number | null {
4848}
4949
5050// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
51- export class TrackedArray < T = unknown > {
51+ class TrackedArray < T = unknown > {
5252 #options: { equals : ( a : T , b : T ) => boolean ; description : string | undefined } ;
5353
5454 constructor (
@@ -192,7 +192,7 @@ export class TrackedArray<T = unknown> {
192192//
193193
194194// eslint-disable-next-line @typescript-eslint/no-empty-object-type
195- export interface TrackedArray < T = unknown > extends Array < T > { }
195+ interface TrackedArray < T = unknown > extends Array < T > { }
196196
197197// Ensure instanceof works correctly
198198Object . setPrototypeOf ( TrackedArray . prototype , Array . prototype ) ;
You can’t perform that action at this time.
0 commit comments