-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20481 from emberjs/backport-proxy-mixin-type-loca…
…tions [BUGFIX LTS] Backport some stable type import locations
- Loading branch information
Showing
5 changed files
with
28 additions
and
19 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
types/preview/@ember/-internals/runtime/lib/mixins/container_proxy.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
declare module '@ember/-internals/runtime/lib/mixins/container_proxy' { | ||
import { ContainerProxy } from '@ember/-internals/owner'; | ||
import Mixin from '@ember/object/mixin'; | ||
|
||
/** | ||
* Given a fullName return a factory manager. | ||
*/ | ||
interface ContainerProxyMixin extends ContainerProxy {} | ||
const ContainerProxyMixin: Mixin; | ||
export default ContainerProxyMixin; | ||
} |
12 changes: 12 additions & 0 deletions
12
types/preview/@ember/-internals/runtime/lib/mixins/registry_proxy.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
declare module '@ember/-internals/runtime/lib/mixins/registry_proxy' { | ||
import { RegistryProxy } from '@ember/-internals/owner'; | ||
import Mixin from '@ember/object/mixin'; | ||
|
||
/** | ||
* RegistryProxyMixin is used to provide public access to specific | ||
* registry functionality. | ||
*/ | ||
interface RegistryProxyMixin extends RegistryProxy {} | ||
const RegistryProxyMixin: Mixin; | ||
export default RegistryProxyMixin; | ||
} |
10 changes: 1 addition & 9 deletions
10
types/preview/@ember/engine/-private/container-proxy-mixin.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
declare module '@ember/engine/-private/container-proxy-mixin' { | ||
import { ContainerProxy } from '@ember/-internals/owner'; | ||
import Mixin from '@ember/object/mixin'; | ||
|
||
/** | ||
* Given a fullName return a factory manager. | ||
*/ | ||
interface ContainerProxyMixin extends ContainerProxy {} | ||
const ContainerProxyMixin: Mixin; | ||
export default ContainerProxyMixin; | ||
export type { default } from '@ember/-internals/runtime/lib/mixins/container_proxy'; | ||
} |
11 changes: 1 addition & 10 deletions
11
types/preview/@ember/engine/-private/registry-proxy-mixin.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,3 @@ | ||
declare module '@ember/engine/-private/registry-proxy-mixin' { | ||
import { RegistryProxy } from '@ember/-internals/owner'; | ||
import Mixin from '@ember/object/mixin'; | ||
|
||
/** | ||
* RegistryProxyMixin is used to provide public access to specific | ||
* registry functionality. | ||
*/ | ||
interface RegistryProxyMixin extends RegistryProxy {} | ||
const RegistryProxyMixin: Mixin; | ||
export default RegistryProxyMixin; | ||
export type { default } from '@ember/-internals/runtime/lib/mixins/registry_proxy'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters