@robiteame/dsh-pi-agent-session-tree 0.1.0
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 +6 -0
- package/README.md +98 -0
- package/README.zh.md +72 -0
- package/lib/index.js +1190 -0
- package/lib/invariant.js +12 -0
- package/lib/typert.host.d.ts +1 -0
- package/lib/typert.host.js +762 -0
- package/lib/typert.remote-client.d.ts +2 -0
- package/lib/typert.remote-client.js +247 -0
- package/lib/types/client.d.ts +8 -0
- package/lib/types/index.d.ts +130 -0
- package/lib/types/invariant.d.ts +15 -0
- package/lib/types/session-event-adapter.d.ts +28 -0
- package/lib/types/session-tree-marker.d.ts +13 -0
- package/lib/types/session-tree-sidecar.d.ts +29 -0
- package/lib/types/session-tree.d.ts +182 -0
- package/lib/types/types.d.ts +185 -0
- package/package.json +77 -0
package/lib/invariant.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// packages/extensions/pi-agent-session-tree/src/invariant.ts
|
|
2
|
+
var PACKAGE_NAME = "@robiteame/dsh-pi-agent-session-tree";
|
|
3
|
+
var name = "pi-agent-session-tree-invariant";
|
|
4
|
+
var inject = ["invariants"];
|
|
5
|
+
var install = () => {
|
|
6
|
+
};
|
|
7
|
+
var apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
|
|
8
|
+
export {
|
|
9
|
+
apply,
|
|
10
|
+
inject,
|
|
11
|
+
name
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TYPERT: Record<string, unknown>
|