ember-source 6.8.3 → 6.8.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.
- package/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +2 -2
- package/dist/ember-template-compiler.js.map +1 -1
- package/dist/ember-testing.js +1 -1
- package/dist/ember.debug.js +4 -6
- package/dist/ember.debug.js.map +1 -1
- package/dist/ember.prod.js +4 -6
- package/dist/ember.prod.js.map +1 -1
- package/dist/packages/@ember/-internals/glimmer/index.js +2 -2
- package/dist/packages/@ember/application/index.js +2 -2
- package/dist/packages/@ember/application/instance.js +2 -4
- package/dist/packages/@ember/component/helper.js +1 -1
- package/dist/packages/@ember/component/index.js +1 -1
- package/dist/packages/@ember/engine/index.js +2 -2
- package/dist/packages/@ember/helper/index.js +1 -1
- package/dist/packages/@ember/modifier/index.js +1 -1
- package/dist/packages/@ember/renderer/index.js +1 -1
- package/dist/packages/@ember/routing/index.js +1 -1
- package/dist/packages/@ember/template/index.js +1 -1
- package/dist/packages/ember/barrel.js +1 -1
- package/dist/packages/ember/version.js +1 -1
- package/dist/packages/ember-testing/lib/initializers.js +1 -1
- package/dist/packages/shared-chunks/{index-BSGulCPg.js → index-D7YmuLah.js} +1 -1
- package/dist/packages/shared-chunks/{setup-registry-CZ_ZGicW.js → setup-registry-CA4EgTdf.js} +1 -1
- package/docs/data.json +11 -11
- package/package.json +3 -3
- package/types/stable/@ember/application/instance.d.ts +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { templateFactory as template, templateCacheCounters } from '../../../@glimmer/opcode-compiler/index.js';
|
|
2
|
-
export { C as Component, H as Helper, I as Input, L as LinkTo, O as OutletView, d as Renderer, R as RootTemplate, S as SafeString, T as Textarea, a as TrustedHTML, _ as _resetRenderers, h as helper, b as htmlSafe, c as isHTMLSafe, i as isTrustedHTML, e as renderComponent, r as renderSettled, t as trustHTML, u as uniqueId } from '../../../shared-chunks/index-
|
|
2
|
+
export { C as Component, H as Helper, I as Input, L as LinkTo, O as OutletView, d as Renderer, R as RootTemplate, S as SafeString, T as Textarea, a as TrustedHTML, _ as _resetRenderers, h as helper, b as htmlSafe, c as isHTMLSafe, i as isTrustedHTML, e as renderComponent, r as renderSettled, t as trustHTML, u as uniqueId } from '../../../shared-chunks/index-D7YmuLah.js';
|
|
3
3
|
export { g as getTemplate, a as getTemplates, h as hasTemplate, s as setTemplate, b as setTemplates } from '../../../shared-chunks/template_registry-DigcUg9m.js';
|
|
4
|
-
export { a as setupApplicationRegistry, s as setupEngineRegistry } from '../../../shared-chunks/setup-registry-
|
|
4
|
+
export { a as setupApplicationRegistry, s as setupEngineRegistry } from '../../../shared-chunks/setup-registry-CA4EgTdf.js';
|
|
5
5
|
export { DOMChanges, DOMTreeConstruction, isSerializationFirstNode } from '../../../@glimmer/runtime/index.js';
|
|
6
6
|
export { NodeDOMTreeConstruction } from '../../../@glimmer/node/index.js';
|
|
7
7
|
export { s as setComponentManager } from '../../../shared-chunks/managers-CbMgnSoo.js';
|
|
@@ -44,8 +44,8 @@ import ApplicationInstance from './instance.js';
|
|
|
44
44
|
import Engine, { buildInitializerMethod } from '../engine/index.js';
|
|
45
45
|
import { p as privatize } from '../../shared-chunks/registry-BJpQx6hv.js';
|
|
46
46
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
47
|
-
import '../../shared-chunks/index-
|
|
48
|
-
import { a as setupApplicationRegistry } from '../../shared-chunks/setup-registry-
|
|
47
|
+
import '../../shared-chunks/index-D7YmuLah.js';
|
|
48
|
+
import { a as setupApplicationRegistry } from '../../shared-chunks/setup-registry-CA4EgTdf.js';
|
|
49
49
|
import '../../@glimmer/runtime/index.js';
|
|
50
50
|
import '../../@glimmer/reference/index.js';
|
|
51
51
|
import RouterService from '../routing/router-service.js';
|
|
@@ -2,7 +2,7 @@ import '../object/index.js';
|
|
|
2
2
|
import { h as hasDOM, e as environment } from '../../shared-chunks/index-BGP1rw3B.js';
|
|
3
3
|
import EngineInstance from '../engine/instance.js';
|
|
4
4
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
5
|
-
import { r as renderSettled } from '../../shared-chunks/index-
|
|
5
|
+
import { r as renderSettled } from '../../shared-chunks/index-D7YmuLah.js';
|
|
6
6
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
7
7
|
import '../debug/index.js';
|
|
8
8
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -235,8 +235,6 @@ class ApplicationInstance extends EngineInstance {
|
|
|
235
235
|
let handleTransitionReject = error => {
|
|
236
236
|
if (error.error && error.error instanceof Error) {
|
|
237
237
|
throw error.error;
|
|
238
|
-
} else if (error.name === 'TransitionAborted' && router._routerMicrolib.activeTransition) {
|
|
239
|
-
return router._routerMicrolib.activeTransition.then(handleTransitionResolve, handleTransitionReject);
|
|
240
238
|
} else if (error.name === 'TransitionAborted') {
|
|
241
239
|
throw new Error(error.message);
|
|
242
240
|
} else {
|
|
@@ -248,7 +246,7 @@ class ApplicationInstance extends EngineInstance {
|
|
|
248
246
|
location.setURL(url);
|
|
249
247
|
|
|
250
248
|
// getURL returns the set url with the rootURL stripped off
|
|
251
|
-
return router.handleURL(location.getURL()).then(handleTransitionResolve, handleTransitionReject);
|
|
249
|
+
return router.handleURL(location.getURL()).followRedirects().then(handleTransitionResolve, handleTransitionReject);
|
|
252
250
|
}
|
|
253
251
|
willDestroy() {
|
|
254
252
|
super.willDestroy();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
2
|
-
export { H as default, h as helper } from '../../shared-chunks/index-
|
|
2
|
+
export { H as default, h as helper } from '../../shared-chunks/index-D7YmuLah.js';
|
|
3
3
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
4
4
|
import '../debug/index.js';
|
|
5
5
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { componentCapabilities as capabilities, getComponentTemplate, setComponentTemplate } from '../../@glimmer/manager/index.js';
|
|
2
2
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
3
|
-
export { I as Input, T as Textarea, C as default } from '../../shared-chunks/index-
|
|
3
|
+
export { I as Input, T as Textarea, C as default } from '../../shared-chunks/index-D7YmuLah.js';
|
|
4
4
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
5
5
|
import '../debug/index.js';
|
|
6
6
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -27,8 +27,8 @@ import '../-internals/views/lib/views/core_view.js';
|
|
|
27
27
|
import '../-internals/views/lib/mixins/action_support.js';
|
|
28
28
|
import '../-internals/views/lib/views/states.js';
|
|
29
29
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
30
|
-
import '../../shared-chunks/index-
|
|
31
|
-
import { s as setupEngineRegistry } from '../../shared-chunks/setup-registry-
|
|
30
|
+
import '../../shared-chunks/index-D7YmuLah.js';
|
|
31
|
+
import { s as setupEngineRegistry } from '../../shared-chunks/setup-registry-CA4EgTdf.js';
|
|
32
32
|
import '../../@glimmer/runtime/index.js';
|
|
33
33
|
import '../runloop/index.js';
|
|
34
34
|
import '../../@glimmer/reference/index.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { helperCapabilities, setHelperManager as setHelperManager$1 } from '../../@glimmer/manager/index.js';
|
|
2
2
|
import { invokeHelper as invokeHelper$1, hash as hash$1, array as array$1, concat as concat$1, get as get$1, fn as fn$1 } from '../../@glimmer/runtime/index.js';
|
|
3
3
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
4
|
-
import { u as uniqueId$1 } from '../../shared-chunks/index-
|
|
4
|
+
import { u as uniqueId$1 } from '../../shared-chunks/index-D7YmuLah.js';
|
|
5
5
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
6
6
|
import '../debug/index.js';
|
|
7
7
|
import '../runloop/index.js';
|
|
@@ -2,7 +2,7 @@ import { setModifierManager as setModifierManager$1 } from '../../@glimmer/manag
|
|
|
2
2
|
export { modifierCapabilities as capabilities } from '../../@glimmer/manager/index.js';
|
|
3
3
|
export { on } from './on.js';
|
|
4
4
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
5
|
-
import '../../shared-chunks/index-
|
|
5
|
+
import '../../shared-chunks/index-D7YmuLah.js';
|
|
6
6
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
7
7
|
import '../debug/index.js';
|
|
8
8
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
2
|
-
export { e as renderComponent, r as renderSettled } from '../../shared-chunks/index-
|
|
2
|
+
export { e as renderComponent, r as renderSettled } from '../../shared-chunks/index-D7YmuLah.js';
|
|
3
3
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
4
4
|
import '../debug/index.js';
|
|
5
5
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
2
|
-
export { L as LinkTo } from '../../shared-chunks/index-
|
|
2
|
+
export { L as LinkTo } from '../../shared-chunks/index-D7YmuLah.js';
|
|
3
3
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
4
4
|
import '../debug/index.js';
|
|
5
5
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
2
|
-
export { b as htmlSafe, c as isHTMLSafe, i as isTrustedHTML, t as trustHTML } from '../../shared-chunks/index-
|
|
2
|
+
export { b as htmlSafe, c as isHTMLSafe, i as isTrustedHTML, t as trustHTML } from '../../shared-chunks/index-D7YmuLah.js';
|
|
3
3
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
4
4
|
import '../debug/index.js';
|
|
5
5
|
import '../../@glimmer/runtime/index.js';
|
|
@@ -39,7 +39,7 @@ import MutableEnumerable from '../@ember/enumerable/mutable.js';
|
|
|
39
39
|
import '../@ember/-internals/runtime/lib/mixins/target_action_support.js';
|
|
40
40
|
import '../@ember/-internals/runtime/lib/ext/rsvp.js';
|
|
41
41
|
import { templateFactory } from '../@glimmer/opcode-compiler/index.js';
|
|
42
|
-
import { I as Input, C as Component, H as Helper } from '../shared-chunks/index-
|
|
42
|
+
import { I as Input, C as Component, H as Helper } from '../shared-chunks/index-D7YmuLah.js';
|
|
43
43
|
import { b as setTemplates, a as getTemplates } from '../shared-chunks/template_registry-DigcUg9m.js';
|
|
44
44
|
import { isSerializationFirstNode, templateOnlyComponent, invokeHelper, hash, array, concat, get as get$1, on as on$1, fn } from '../@glimmer/runtime/index.js';
|
|
45
45
|
import { run } from '../@ember/runloop/index.js';
|
|
@@ -32,7 +32,7 @@ import '../../shared-chunks/unrecognized-url-error-Csk7hcJF.js';
|
|
|
32
32
|
import '../../@ember/routing/lib/routing-service.js';
|
|
33
33
|
import '../../@ember/controller/index.js';
|
|
34
34
|
import '../../@glimmer/opcode-compiler/index.js';
|
|
35
|
-
import '../../shared-chunks/index-
|
|
35
|
+
import '../../shared-chunks/index-D7YmuLah.js';
|
|
36
36
|
import '../../shared-chunks/registry-BJpQx6hv.js';
|
|
37
37
|
import '../../@glimmer/runtime/index.js';
|
|
38
38
|
import '../../@glimmer/reference/index.js';
|
|
@@ -5206,7 +5206,7 @@ class ClassicRootState {
|
|
|
5206
5206
|
nextSibling: null
|
|
5207
5207
|
}), layout, dynamicScope);
|
|
5208
5208
|
let result = this.result = iterator.sync();
|
|
5209
|
-
associateDestroyableChild(
|
|
5209
|
+
associateDestroyableChild(this, result);
|
|
5210
5210
|
this.render = errorLoopTransaction(() => {
|
|
5211
5211
|
if (isDestroying(result) || isDestroyed(result)) return;
|
|
5212
5212
|
return result.rerender({
|
package/dist/packages/shared-chunks/{setup-registry-CZ_ZGicW.js → setup-registry-CA4EgTdf.js}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { p as privatize } from './registry-BJpQx6hv.js';
|
|
2
2
|
import { getOwner } from '../@ember/-internals/owner/index.js';
|
|
3
3
|
import '../@ember/debug/index.js';
|
|
4
|
-
import { O as OutletView, f as OutletTemplate, I as Input, L as LinkTo, T as Textarea, R as RootTemplate, d as Renderer } from './index-
|
|
4
|
+
import { O as OutletView, f as OutletTemplate, I as Input, L as LinkTo, T as Textarea, R as RootTemplate, d as Renderer } from './index-D7YmuLah.js';
|
|
5
5
|
import { clientBuilder, rehydrationBuilder } from '../@glimmer/runtime/index.js';
|
|
6
6
|
import { serializeBuilder } from '../@glimmer/node/index.js';
|
|
7
7
|
import { isDevelopingApp } from '@embroider/macros';
|
package/docs/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "The Ember API",
|
|
4
4
|
"description": "The Ember API: a framework for building ambitious web applications",
|
|
5
5
|
"url": "https://emberjs.com/",
|
|
6
|
-
"version": "6.8.
|
|
6
|
+
"version": "6.8.4"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"node_modules/rsvp/lib/rsvp/promise/all.js": {
|
|
@@ -2202,7 +2202,7 @@
|
|
|
2202
2202
|
},
|
|
2203
2203
|
"tag": "module",
|
|
2204
2204
|
"file": "packages/@ember/application/instance.ts",
|
|
2205
|
-
"line":
|
|
2205
|
+
"line": 311
|
|
2206
2206
|
},
|
|
2207
2207
|
"@ember/application/namespace": {
|
|
2208
2208
|
"name": "@ember/application/namespace",
|
|
@@ -3649,7 +3649,7 @@
|
|
|
3649
3649
|
"module": "@ember/application",
|
|
3650
3650
|
"namespace": "ApplicationInstance",
|
|
3651
3651
|
"file": "packages/@ember/application/instance.ts",
|
|
3652
|
-
"line":
|
|
3652
|
+
"line": 311,
|
|
3653
3653
|
"description": "A list of boot-time configuration options for customizing the behavior of\nan `ApplicationInstance`.\n\nThis is an interface class that exists purely to document the available\noptions; you do not need to construct it manually. Simply pass a regular\nJavaScript object containing the desired options into methods that require\none of these options object:\n\n```javascript\nMyApp.visit(\"/\", { location: \"none\", rootElement: \"#container\" });\n```\n\nNot all combinations of the supported options are valid. See the documentation\non `Application#visit` for the supported configurations.\n\nInternal, experimental or otherwise unstable flags are marked as private.",
|
|
3654
3654
|
"access": "public",
|
|
3655
3655
|
"tagname": ""
|
|
@@ -10181,7 +10181,7 @@
|
|
|
10181
10181
|
},
|
|
10182
10182
|
{
|
|
10183
10183
|
"file": "packages/@ember/application/instance.ts",
|
|
10184
|
-
"line":
|
|
10184
|
+
"line": 291,
|
|
10185
10185
|
"access": "private",
|
|
10186
10186
|
"tagname": "",
|
|
10187
10187
|
"itemtype": "method",
|
|
@@ -10203,7 +10203,7 @@
|
|
|
10203
10203
|
},
|
|
10204
10204
|
{
|
|
10205
10205
|
"file": "packages/@ember/application/instance.ts",
|
|
10206
|
-
"line":
|
|
10206
|
+
"line": 334,
|
|
10207
10207
|
"description": "Interactive mode: whether we need to set up event delegation and invoke\nlifecycle callbacks on Components.",
|
|
10208
10208
|
"itemtype": "property",
|
|
10209
10209
|
"name": "isInteractive",
|
|
@@ -10217,7 +10217,7 @@
|
|
|
10217
10217
|
},
|
|
10218
10218
|
{
|
|
10219
10219
|
"file": "packages/@ember/application/instance.ts",
|
|
10220
|
-
"line":
|
|
10220
|
+
"line": 345,
|
|
10221
10221
|
"itemtype": "property",
|
|
10222
10222
|
"name": "_renderMode",
|
|
10223
10223
|
"type": "string",
|
|
@@ -10230,7 +10230,7 @@
|
|
|
10230
10230
|
},
|
|
10231
10231
|
{
|
|
10232
10232
|
"file": "packages/@ember/application/instance.ts",
|
|
10233
|
-
"line":
|
|
10233
|
+
"line": 353,
|
|
10234
10234
|
"description": "Run in a full browser environment.\n\nWhen this flag is set to `false`, it will disable most browser-specific\nand interactive features. Specifically:\n\n* It does not use `jQuery` to append the root view; the `rootElement`\n (either specified as a subsequent option or on the application itself)\n must already be an `Element` in the given `document` (as opposed to a\n string selector).\n\n* It does not set up an `EventDispatcher`.\n\n* It does not run any `Component` lifecycle hooks (such as `didInsertElement`).\n\n* It sets the `location` option to `\"none\"`. (If you would like to use\n the location adapter specified in the app's router instead, you can also\n specify `{ location: null }` to specifically opt-out.)",
|
|
10235
10235
|
"itemtype": "property",
|
|
10236
10236
|
"name": "isBrowser",
|
|
@@ -10244,7 +10244,7 @@
|
|
|
10244
10244
|
},
|
|
10245
10245
|
{
|
|
10246
10246
|
"file": "packages/@ember/application/instance.ts",
|
|
10247
|
-
"line":
|
|
10247
|
+
"line": 379,
|
|
10248
10248
|
"description": "If present, overrides the router's `location` property with this\nvalue. This is useful for environments where trying to modify the\nURL would be inappropriate.",
|
|
10249
10249
|
"itemtype": "property",
|
|
10250
10250
|
"name": "location",
|
|
@@ -10258,7 +10258,7 @@
|
|
|
10258
10258
|
},
|
|
10259
10259
|
{
|
|
10260
10260
|
"file": "packages/@ember/application/instance.ts",
|
|
10261
|
-
"line":
|
|
10261
|
+
"line": 391,
|
|
10262
10262
|
"description": "Disable rendering completely.\n\nWhen this flag is set to `false`, it will disable the entire rendering\npipeline. Essentially, this puts the app into \"routing-only\" mode. No\ntemplates will be rendered, and no Components will be created.",
|
|
10263
10263
|
"itemtype": "property",
|
|
10264
10264
|
"name": "shouldRender",
|
|
@@ -10272,7 +10272,7 @@
|
|
|
10272
10272
|
},
|
|
10273
10273
|
{
|
|
10274
10274
|
"file": "packages/@ember/application/instance.ts",
|
|
10275
|
-
"line":
|
|
10275
|
+
"line": 405,
|
|
10276
10276
|
"description": "If present, render into the given `Document` object instead of the\nglobal `window.document` object.\n\nIn practice, this is only useful in non-browser environment or in\nnon-interactive mode, because Ember's `jQuery` dependency is\nimplicitly bound to the current document, causing event delegation\nto not work properly when the app is rendered into a foreign\ndocument object (such as an iframe's `contentDocument`).\n\nIn non-browser mode, this could be a \"`Document`-like\" object as\nEmber only interact with a small subset of the DOM API in non-\ninteractive mode. While the exact requirements have not yet been\nformalized, the `SimpleDOM` library's implementation is known to\nwork.",
|
|
10277
10277
|
"itemtype": "property",
|
|
10278
10278
|
"name": "document",
|
|
@@ -10286,7 +10286,7 @@
|
|
|
10286
10286
|
},
|
|
10287
10287
|
{
|
|
10288
10288
|
"file": "packages/@ember/application/instance.ts",
|
|
10289
|
-
"line":
|
|
10289
|
+
"line": 428,
|
|
10290
10290
|
"description": "If present, overrides the application's `rootElement` property on\nthe instance. This is useful for testing environment, where you\nmight want to append the root view to a fixture area.\n\nIn non-browser mode, because Ember does not have access to jQuery,\nthis options must be specified as a DOM `Element` object instead of\na selector string.\n\nSee the documentation on `Application`'s `rootElement` for\ndetails.",
|
|
10291
10291
|
"itemtype": "property",
|
|
10292
10292
|
"name": "rootElement",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.4",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"ember-router-generator": "^2.0.0",
|
|
102
102
|
"inflection": "^2.0.1",
|
|
103
103
|
"route-recognizer": "^0.3.4",
|
|
104
|
-
"router_js": "^8.0.
|
|
104
|
+
"router_js": "^8.0.6",
|
|
105
105
|
"semver": "^7.5.2",
|
|
106
106
|
"silent-error": "^1.1.1",
|
|
107
107
|
"simple-html-tokenizer": "^0.5.11"
|
|
@@ -404,7 +404,7 @@
|
|
|
404
404
|
}
|
|
405
405
|
},
|
|
406
406
|
"packageManager": "pnpm@10.5.0",
|
|
407
|
-
"_originalVersion": "6.8.
|
|
407
|
+
"_originalVersion": "6.8.4",
|
|
408
408
|
"_versionPreviouslyCalculated": true,
|
|
409
409
|
"publishConfig": {
|
|
410
410
|
"tag": "old"
|
|
@@ -2,6 +2,7 @@ declare module '@ember/application/instance' {
|
|
|
2
2
|
/**
|
|
3
3
|
@module @ember/application
|
|
4
4
|
*/
|
|
5
|
+
/// <reference types="rsvp" />
|
|
5
6
|
import EngineInstance from "@ember/engine/instance";
|
|
6
7
|
import type { BootOptions } from "@ember/engine/instance";
|
|
7
8
|
import type Application from "@ember/application";
|
|
@@ -141,7 +142,7 @@ declare module '@ember/application/instance' {
|
|
|
141
142
|
@param url {String} the destination URL
|
|
142
143
|
@return {Promise<ApplicationInstance>}
|
|
143
144
|
*/
|
|
144
|
-
visit(url: string): import("rsvp").Promise<unknown>;
|
|
145
|
+
visit(url: string): import("rsvp").default.Promise<unknown>;
|
|
145
146
|
willDestroy(): void;
|
|
146
147
|
/**
|
|
147
148
|
@private
|