ember-source 5.8.0-alpha.2 → 5.8.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -130,6 +130,21 @@ declare module '@ember/-internals/environment/lib/env' {
130
130
  @private
131
131
  */
132
132
  _DEFAULT_ASYNC_OBSERVERS: boolean;
133
+ /**
134
+ Whether the app still has default record-loading behavior in the model
135
+ hook from RFC https://rfcs.emberjs.com/id/0774-implicit-record-route-loading
136
+ This will also remove the default store property from the route.
137
+
138
+ This is not intended to be set directly, as the implementation may change in
139
+ the future. Use `@ember/optional-features` instead.
140
+
141
+ @property _NO_IMPLICIT_ROUTE_MODEL
142
+ @for EmberENV
143
+ @type Boolean
144
+ @default false
145
+ @private
146
+ */
147
+ _NO_IMPLICIT_ROUTE_MODEL: boolean;
133
148
  /**
134
149
  Controls the maximum number of scheduled rerenders without "settling". In general,
135
150
  applications should not need to modify this environment variable, but please