@deepseek-ai/dsh-web-app 0.1.2-alpha.3 → 0.1.2-alpha.5
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/README.i18n.yaml +2 -2
- package/README.md +2 -2
- package/README.zh.md +2 -2
- package/cordis.patch.yml +0 -6
- package/package.json +75 -82
- package/lib/invariant.js +0 -25
- package/lib/types/invariant.d.ts +0 -16
package/README.i18n.yaml
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
3
|
# after editing either side, bring the other along and re-record with:
|
|
4
4
|
# pnpm run verify-translation-pairing --write packages/bundle/web-app/README.md
|
|
5
|
-
README.md:
|
|
6
|
-
README.zh.md:
|
|
5
|
+
README.md: c352ec937ecfa51f36eae1970067a62aed51b643
|
|
6
|
+
README.zh.md: cc3b5e5660cd7fdb38f6d9084669491b1df27ee7
|
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ The URL line and browser handoff are readiness signals: supervisors RPC as soon
|
|
|
90
90
|
| [`src/index.ts`](src/index.ts) | The `web-app` glue plugin: dist resolution, LAN trust sampling, prompt sections, bash variable, URL line, browser handoff |
|
|
91
91
|
| [`src/startup.ts`](src/startup.ts) | The `web-startup` provider: `--host`, `--port`, `--trusted-host`, `--no-open`, `--help` |
|
|
92
92
|
| [`cordis.patch.yml`](cordis.patch.yml) | The web patch: restated base values, web host rows, browser roster, agent plane behind presets |
|
|
93
|
-
|
|
|
93
|
+
| — | No runtime invariant companion is published; every contribution (frontend-static child plugin, prompt section, bashEnv registration) is registry-disposed with the fiber, and each owning registry's package carries that relation's invariant; the package holds no mutable state of its own to audit. |
|
|
94
94
|
| [`tests/web-app.spec.ts`](tests/web-app.spec.ts) | Dist resolution, fallback seat, prompt sections, readiness |
|
|
95
95
|
| [`tests/startup.spec.ts`](tests/startup.spec.ts) | Command-line parsing over a real Loader tree |
|
|
96
96
|
| [`tests/trusted-hosts.spec.ts`](tests/trusted-hosts.spec.ts) | LAN-trust sampling |
|
|
@@ -98,7 +98,7 @@ The URL line and browser handoff are readiness signals: supervisors RPC as soon
|
|
|
98
98
|
|
|
99
99
|
### Invariant ownership
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
No invariant companion is published because every contribution — the frontend-static child plugin, the prompt sections, and the bash variable registration — is registry-disposed with the fiber, and each owning registry package carries that relation's invariant.
|
|
102
102
|
|
|
103
103
|
</details>
|
|
104
104
|
|
package/README.zh.md
CHANGED
|
@@ -90,7 +90,7 @@ URL 行与浏览器交接都是就绪信号:监督方一观察到该行就发
|
|
|
90
90
|
| [`src/index.ts`](src/index.ts) | `web-app` 粘合插件:dist 解析、LAN 信任采样、提示词段落、bash 变量、URL 行、浏览器交接 |
|
|
91
91
|
| [`src/startup.ts`](src/startup.ts) | `web-startup` 提供方:`--host`、`--port`、`--trusted-host`、`--no-open`、`--help` |
|
|
92
92
|
| [`cordis.patch.yml`](cordis.patch.yml) | Web patch:重述的基础值、Web 宿主行、浏览器名录、preset 之后的 agent 层 |
|
|
93
|
-
|
|
|
93
|
+
| — | 不发布运行时不变式伴生入口;本包只持有静态 contribution 列表,每项 contribution 都由其 registry 释放。 |
|
|
94
94
|
| [`tests/web-app.spec.ts`](tests/web-app.spec.ts) | dist 解析、fallback 席位、提示词段落、就绪宣告 |
|
|
95
95
|
| [`tests/startup.spec.ts`](tests/startup.spec.ts) | 在真实 Loader 树上的命令行解析 |
|
|
96
96
|
| [`tests/trusted-hosts.spec.ts`](tests/trusted-hosts.spec.ts) | LAN 信任采样 |
|
|
@@ -98,7 +98,7 @@ URL 行与浏览器交接都是就绪信号:监督方一观察到该行就发
|
|
|
98
98
|
|
|
99
99
|
### 不变式归属
|
|
100
100
|
|
|
101
|
-
|
|
101
|
+
不发布不变式伴生入口,因为每项贡献——frontend-static 子插件、提示词段落与 bash 变量注册——都会随 fiber 由 registry 释放,且每个所属 registry 的包负责该关系的不变式。
|
|
102
102
|
|
|
103
103
|
</details>
|
|
104
104
|
|
package/cordis.patch.yml
CHANGED
|
@@ -412,12 +412,6 @@
|
|
|
412
412
|
- id: tool-subagent-fork
|
|
413
413
|
disabled: true
|
|
414
414
|
|
|
415
|
-
# `tool-subagent-report` is host-plane for the same reason as the registry, not
|
|
416
|
-
# because a preset may not want it: it registers a CONTINUABLE SETUP on that
|
|
417
|
-
# singleton rather than a tool this agent calls, and the setup list is not
|
|
418
|
-
# scope-aware — one copy per mounted preset means every child gets `report`
|
|
419
|
-
# registered once per live session, which throws on the second.
|
|
420
|
-
|
|
421
415
|
- id: workflow-worker-thread
|
|
422
416
|
disabled: true
|
|
423
417
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-web-app",
|
|
3
3
|
"description": "The dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)",
|
|
4
|
-
"version": "0.1.2-alpha.
|
|
4
|
+
"version": "0.1.2-alpha.5",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -22,17 +22,12 @@
|
|
|
22
22
|
"types": "./lib/types/startup.d.ts",
|
|
23
23
|
"default": "./lib/startup.js"
|
|
24
24
|
},
|
|
25
|
-
"./invariant": {
|
|
26
|
-
"types": "./lib/types/invariant.d.ts",
|
|
27
|
-
"default": "./lib/invariant.js"
|
|
28
|
-
},
|
|
29
25
|
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
30
26
|
"./src/*": "./src/*",
|
|
31
27
|
"./package.json": "./package.json"
|
|
32
28
|
},
|
|
33
29
|
"files": [
|
|
34
30
|
"lib/index.js",
|
|
35
|
-
"lib/invariant.js",
|
|
36
31
|
"lib/startup.js",
|
|
37
32
|
"cordis.patch.yml",
|
|
38
33
|
"lib/types/**/*.d.ts"
|
|
@@ -46,89 +41,87 @@
|
|
|
46
41
|
"dependencies": {
|
|
47
42
|
"commander": "^15.0.0",
|
|
48
43
|
"open": "^11.0.0",
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
51
|
-
"@deepseek-ai/dsh-app-boot": "^0.1.2-alpha.
|
|
52
|
-
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.
|
|
53
|
-
"@deepseek-ai/dsh-client-hmr": "^0.1.2-alpha.
|
|
54
|
-
"@deepseek-ai/dsh-
|
|
55
|
-
"@deepseek-ai/dsh-client-modules": "^0.1.2-alpha.
|
|
56
|
-
"@deepseek-ai/dsh-client-
|
|
57
|
-
"@deepseek-ai/dsh-client-ui-
|
|
58
|
-
"@deepseek-ai/dsh-client-ui-
|
|
59
|
-
"@deepseek-ai/dsh-client-ui-
|
|
60
|
-
"@deepseek-ai/dsh-client-ui-
|
|
61
|
-
"@deepseek-ai/dsh-client-ui-commands": "^0.1.2-alpha.
|
|
62
|
-
"@deepseek-ai/dsh-client-ui-
|
|
63
|
-
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.
|
|
64
|
-
"@deepseek-ai/dsh-client-ui-cordis": "^0.1.2-alpha.
|
|
65
|
-
"@deepseek-ai/dsh-client-ui-deliverables": "^0.1.2-alpha.
|
|
66
|
-
"@deepseek-ai/dsh-client-ui-directory-picker-browse": "^0.1.2-alpha.
|
|
67
|
-
"@deepseek-ai/dsh-client-ui-
|
|
68
|
-
"@deepseek-ai/dsh-client-ui-
|
|
69
|
-
"@deepseek-ai/dsh-client-ui-
|
|
70
|
-
"@deepseek-ai/dsh-client-ui-
|
|
71
|
-
"@deepseek-ai/dsh-
|
|
72
|
-
"@deepseek-ai/dsh-client-ui-settings-
|
|
73
|
-
"@deepseek-ai/dsh-client-ui-
|
|
74
|
-
"@deepseek-ai/dsh-client-ui-
|
|
75
|
-
"@deepseek-ai/dsh-client-ui-
|
|
76
|
-
"@deepseek-ai/dsh-client-ui-
|
|
77
|
-
"@deepseek-ai/dsh-client-ui-
|
|
78
|
-
"@deepseek-ai/dsh-client-ui-settings-
|
|
79
|
-
"@deepseek-ai/dsh-client-ui-
|
|
80
|
-
"@deepseek-ai/dsh-client-ui-
|
|
81
|
-
"@deepseek-ai/dsh-client-ui-
|
|
82
|
-
"@deepseek-ai/dsh-client-ui-
|
|
83
|
-
"@deepseek-ai/dsh-client-ui-
|
|
84
|
-
"@deepseek-ai/dsh-client-ui-
|
|
85
|
-
"@deepseek-ai/dsh-client-ui-
|
|
86
|
-
"@deepseek-ai/dsh-client-ui-
|
|
87
|
-
"@deepseek-ai/dsh-client-ui-
|
|
88
|
-
"@deepseek-ai/dsh-client-ui-
|
|
89
|
-
"@deepseek-ai/dsh-
|
|
90
|
-
"@deepseek-ai/dsh-client-ui-
|
|
91
|
-
"@deepseek-ai/dsh-client-ui-
|
|
92
|
-
"@deepseek-ai/dsh-client-ui-
|
|
93
|
-
"@deepseek-ai/dsh-
|
|
94
|
-
"@deepseek-ai/dsh-
|
|
95
|
-
"@deepseek-ai/dsh-
|
|
96
|
-
"@deepseek-ai/dsh-host-
|
|
97
|
-
"@deepseek-ai/dsh-host-
|
|
98
|
-
"@deepseek-ai/dsh-host-directory-picker-
|
|
99
|
-
"@deepseek-ai/dsh-
|
|
100
|
-
"@deepseek-ai/dsh-host-
|
|
101
|
-
"@deepseek-ai/dsh-
|
|
102
|
-
"@deepseek-ai/dsh-
|
|
103
|
-
"@deepseek-ai/dsh-
|
|
104
|
-
"@deepseek-ai/dsh-
|
|
105
|
-
"@deepseek-ai/dsh-
|
|
106
|
-
"@deepseek-ai/dsh-
|
|
107
|
-
"@deepseek-ai/dsh-
|
|
108
|
-
"@deepseek-ai/dsh-session-
|
|
109
|
-
"@deepseek-ai/dsh-
|
|
110
|
-
"@deepseek-ai/dsh-
|
|
111
|
-
"@deepseek-ai/dsh-
|
|
112
|
-
"@deepseek-ai/dsh-
|
|
113
|
-
"@deepseek-ai/dsh-
|
|
114
|
-
"@deepseek-ai/dsh-workspace": "^0.1.2-alpha.
|
|
115
|
-
"@deepseek-ai/dsh-
|
|
44
|
+
"@deepseek-ai/dsh-tool-subagent": "^0.1.2-alpha.5",
|
|
45
|
+
"@deepseek-ai/dsh-api-remotes": "^0.1.2-alpha.5",
|
|
46
|
+
"@deepseek-ai/dsh-app-boot": "^0.1.2-alpha.5",
|
|
47
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.5",
|
|
48
|
+
"@deepseek-ai/dsh-client-hmr": "^0.1.2-alpha.5",
|
|
49
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.5",
|
|
50
|
+
"@deepseek-ai/dsh-client-modules": "^0.1.2-alpha.5",
|
|
51
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.5",
|
|
52
|
+
"@deepseek-ai/dsh-client-ui-agent-preset": "^0.1.2-alpha.5",
|
|
53
|
+
"@deepseek-ai/dsh-client-ui-attachment": "^0.1.2-alpha.5",
|
|
54
|
+
"@deepseek-ai/dsh-client-ui-approval": "^0.1.2-alpha.5",
|
|
55
|
+
"@deepseek-ai/dsh-client-ui-brand-official": "^0.1.2-alpha.5",
|
|
56
|
+
"@deepseek-ai/dsh-client-ui-commands": "^0.1.2-alpha.5",
|
|
57
|
+
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-alpha.5",
|
|
58
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.5",
|
|
59
|
+
"@deepseek-ai/dsh-client-ui-cordis": "^0.1.2-alpha.5",
|
|
60
|
+
"@deepseek-ai/dsh-client-ui-deliverables": "^0.1.2-alpha.5",
|
|
61
|
+
"@deepseek-ai/dsh-client-ui-directory-picker-browse": "^0.1.2-alpha.5",
|
|
62
|
+
"@deepseek-ai/dsh-client-ui-directory-picker-native": "^0.1.2-alpha.5",
|
|
63
|
+
"@deepseek-ai/dsh-client-ui-message-feedback": "^0.1.2-alpha.5",
|
|
64
|
+
"@deepseek-ai/dsh-client-ui-goal": "^0.1.2-alpha.5",
|
|
65
|
+
"@deepseek-ai/dsh-client-ui-layout": "^0.1.2-alpha.5",
|
|
66
|
+
"@deepseek-ai/dsh-agent-presets": "^0.1.2-alpha.5",
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-settings-models": "^0.1.2-alpha.5",
|
|
68
|
+
"@deepseek-ai/dsh-client-ui-settings-plugin-inventory": "^0.1.2-alpha.5",
|
|
69
|
+
"@deepseek-ai/dsh-client-ui-permission-presets": "^0.1.2-alpha.5",
|
|
70
|
+
"@deepseek-ai/dsh-client-ui-plan": "^0.1.2-alpha.5",
|
|
71
|
+
"@deepseek-ai/dsh-client-ui-schedule": "^0.1.2-alpha.5",
|
|
72
|
+
"@deepseek-ai/dsh-client-ui-session": "^0.1.2-alpha.5",
|
|
73
|
+
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.2-alpha.5",
|
|
74
|
+
"@deepseek-ai/dsh-client-ui-user-questions": "^0.1.2-alpha.5",
|
|
75
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.5",
|
|
76
|
+
"@deepseek-ai/dsh-client-ui-settings-general": "^0.1.2-alpha.5",
|
|
77
|
+
"@deepseek-ai/dsh-client-ui-sidebar": "^0.1.2-alpha.5",
|
|
78
|
+
"@deepseek-ai/dsh-client-ui-skill": "^0.1.2-alpha.5",
|
|
79
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.2-alpha.5",
|
|
80
|
+
"@deepseek-ai/dsh-client-ui-reference": "^0.1.2-alpha.5",
|
|
81
|
+
"@deepseek-ai/dsh-client-ui-subagent": "^0.1.2-alpha.5",
|
|
82
|
+
"@deepseek-ai/dsh-client-ui-jobs": "^0.1.2-alpha.5",
|
|
83
|
+
"@deepseek-ai/dsh-client-ui-theme": "^0.1.2-alpha.5",
|
|
84
|
+
"@deepseek-ai/dsh-client-ui-tool": "^0.1.2-alpha.5",
|
|
85
|
+
"@deepseek-ai/dsh-client-ui-workflow-run": "^0.1.2-alpha.5",
|
|
86
|
+
"@deepseek-ai/dsh-client-ui-trajectory": "^0.1.2-alpha.5",
|
|
87
|
+
"@deepseek-ai/dsh-client-ui-workspace": "^0.1.2-alpha.5",
|
|
88
|
+
"@deepseek-ai/dsh-cmdline": "^0.1.2-alpha.5",
|
|
89
|
+
"@deepseek-ai/dsh-client-ui-model-selection": "^0.1.2-alpha.5",
|
|
90
|
+
"@deepseek-ai/dsh-cordis-client-runner": "^0.1.2-alpha.5",
|
|
91
|
+
"@deepseek-ai/dsh-cordis-host-runner": "^0.1.2-alpha.5",
|
|
92
|
+
"@deepseek-ai/dsh-host-frontend-static": "^0.1.2-alpha.5",
|
|
93
|
+
"@deepseek-ai/dsh-host-directory-picker-auto": "^0.1.2-alpha.5",
|
|
94
|
+
"@deepseek-ai/dsh-web-frontend": "^0.1.2-alpha.5",
|
|
95
|
+
"@deepseek-ai/dsh-host-directory-picker-browse": "^0.1.2-alpha.5",
|
|
96
|
+
"@deepseek-ai/dsh-host-directory-picker-native": "^0.1.2-alpha.5",
|
|
97
|
+
"@deepseek-ai/dsh-host-plugin-inventory": "^0.1.2-alpha.5",
|
|
98
|
+
"@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.5",
|
|
99
|
+
"@deepseek-ai/dsh-file-reference": "^0.1.2-alpha.5",
|
|
100
|
+
"@deepseek-ai/dsh-file-reference-local": "^0.1.2-alpha.5",
|
|
101
|
+
"@deepseek-ai/dsh-launch-environment": "^0.1.2-alpha.5",
|
|
102
|
+
"@deepseek-ai/dsh-message-feedback": "^0.1.2-alpha.5",
|
|
103
|
+
"@deepseek-ai/dsh-session-log-export": "^0.1.2-alpha.5",
|
|
104
|
+
"@deepseek-ai/dsh-session-stats": "^0.1.2-alpha.5",
|
|
105
|
+
"@deepseek-ai/dsh-session-reference": "^0.1.2-alpha.5",
|
|
106
|
+
"@deepseek-ai/dsh-code-runtime-worker-thread": "^0.1.2-alpha.5",
|
|
107
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-alpha.5",
|
|
108
|
+
"@deepseek-ai/dsh-api-settings-controller": "^0.1.2-alpha.5",
|
|
109
|
+
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.2-alpha.5",
|
|
110
|
+
"@deepseek-ai/dsh-subprocess": "^0.1.2-alpha.5",
|
|
116
111
|
"@deepseek-ai/schemastery": "^3.18.2",
|
|
117
|
-
"@deepseek-ai/dsh-
|
|
118
|
-
"@deepseek-ai/dsh-
|
|
112
|
+
"@deepseek-ai/dsh-workspace": "^0.1.2-alpha.5",
|
|
113
|
+
"@deepseek-ai/dsh-session-turn-outline": "^0.1.2-alpha.5"
|
|
119
114
|
},
|
|
120
115
|
"peerDependencies": {
|
|
116
|
+
"@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.5",
|
|
117
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.5",
|
|
121
118
|
"@deepseek-ai/cordis-plugin-loader": "^1.0.3",
|
|
122
|
-
"@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.3",
|
|
123
|
-
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
|
|
124
|
-
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.3",
|
|
125
119
|
"@deepseek-ai/cordis": "^4.0.2"
|
|
126
120
|
},
|
|
127
121
|
"devDependencies": {
|
|
128
|
-
"@deepseek-ai/
|
|
122
|
+
"@deepseek-ai/cordis-plugin-loader": "^1.0.3",
|
|
123
|
+
"@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.5",
|
|
129
124
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
130
|
-
"@deepseek-ai/dsh-
|
|
131
|
-
"@deepseek-ai/dsh-shell-env": "^0.1.2-alpha.3",
|
|
132
|
-
"@deepseek-ai/cordis-plugin-loader": "^1.0.3"
|
|
125
|
+
"@deepseek-ai/dsh-system-prompt": "^0.1.2-alpha.5"
|
|
133
126
|
}
|
|
134
127
|
}
|
package/lib/invariant.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
//#region lib/types/invariant.js
|
|
2
|
-
/**
|
|
3
|
-
* Package-owned invariant companion for `@deepseek-ai/dsh-web-app`.
|
|
4
|
-
* @module @deepseek-ai/dsh-web-app/invariant
|
|
5
|
-
*/
|
|
6
|
-
const PACKAGE_NAME = "@deepseek-ai/dsh-web-app";
|
|
7
|
-
/** Cordis companion plugin name. */
|
|
8
|
-
const name = "web-app-invariant";
|
|
9
|
-
/** Service required before the companion can register. */
|
|
10
|
-
const inject = ["invariants"];
|
|
11
|
-
/**
|
|
12
|
-
* No runtime invariant: every contribution (frontend-static child plugin,
|
|
13
|
-
* prompt section, bashEnv registration) is registry-disposed with the fiber,
|
|
14
|
-
* and each owning registry's package carries that relation's invariant; the
|
|
15
|
-
* package holds no mutable state of its own to audit.
|
|
16
|
-
*/
|
|
17
|
-
const install = () => {};
|
|
18
|
-
/**
|
|
19
|
-
* Register this package's invariant companion.
|
|
20
|
-
* @param ctx - Cordis context carrying the invariant service.
|
|
21
|
-
* @returns the installed registration's disposer after setup succeeds.
|
|
22
|
-
*/
|
|
23
|
-
const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
|
|
24
|
-
//#endregion
|
|
25
|
-
export { apply, inject, name };
|
package/lib/types/invariant.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Package-owned invariant companion for `@deepseek-ai/dsh-web-app`.
|
|
3
|
-
* @module @deepseek-ai/dsh-web-app/invariant
|
|
4
|
-
*/
|
|
5
|
-
import type { Context } from '@deepseek-ai/cordis';
|
|
6
|
-
/** Cordis companion plugin name. */
|
|
7
|
-
export declare const name = "web-app-invariant";
|
|
8
|
-
/** Service required before the companion can register. */
|
|
9
|
-
export declare const inject: string[];
|
|
10
|
-
/**
|
|
11
|
-
* Register this package's invariant companion.
|
|
12
|
-
* @param ctx - Cordis context carrying the invariant service.
|
|
13
|
-
* @returns the installed registration's disposer after setup succeeds.
|
|
14
|
-
*/
|
|
15
|
-
export declare const apply: (ctx: Context) => Promise<() => void>;
|
|
16
|
-
//# sourceMappingURL=invariant.d.ts.map
|