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)) {
8
8
9
9
Reflect . set ( globalThis , GLIMMER_VALIDATOR_REGISTRATION , true ) ;
10
10
11
- export { TrackedArray , trackedArray } from './lib/collections/array' ;
11
+ export { trackedArray } from './lib/collections/array' ;
12
12
export { debug } from './lib/debug' ;
13
13
export { dirtyTagFor , tagFor , type TagMeta , tagMetaFor } from './lib/meta' ;
14
14
export { 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 {
48
48
}
49
49
50
50
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
51
- export class TrackedArray < T = unknown > {
51
+ class TrackedArray < T = unknown > {
52
52
#options: { equals : ( a : T , b : T ) => boolean ; description : string | undefined } ;
53
53
54
54
constructor (
@@ -192,7 +192,7 @@ export class TrackedArray<T = unknown> {
192
192
//
193
193
194
194
// 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 > { }
196
196
197
197
// Ensure instanceof works correctly
198
198
Object . setPrototypeOf ( TrackedArray . prototype , Array . prototype ) ;
You can’t perform that action at this time.
0 commit comments