File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { assert, deprecate } from '@ember/debug';
5
5
6
6
import { DEPRECATE_MANY_ARRAY_DUPLICATES } from '@ember-data/deprecations' ;
7
7
import type Store from '@ember-data/store' ;
8
+ import type { NativeProxy } from '@ember-data/store/-private' ;
8
9
import {
9
10
ARRAY_SIGNAL ,
10
11
isStableIdentifier ,
@@ -171,7 +172,7 @@ export default class RelatedCollection<T = unknown> extends RecordArray<T> {
171
172
172
173
[ MUTATE ] (
173
174
target : StableRecordIdentifier [ ] ,
174
- receiver : typeof Proxy < StableRecordIdentifier [ ] , T [ ] > ,
175
+ receiver : typeof NativeProxy < StableRecordIdentifier [ ] , T [ ] > ,
175
176
prop : string ,
176
177
args : unknown [ ] ,
177
178
_SIGNAL : Signal
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export {
19
19
// TODO this should be a deprecated helper but we have so much usage of it
20
20
// to also eliminate
21
21
export { default as coerceId } from './-private/utils/coerce-id' ;
22
-
22
+ export type { NativeProxy } from './-private/record-arrays/native-proxy-type-fix' ;
23
23
export {
24
24
default as RecordArray ,
25
25
default as IdentifierArray ,
You can’t perform that action at this time.
0 commit comments