@pi-oxide/pi-host-web 0.5.0 → 0.8.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/dist/bindings.d.ts +2 -0
- package/dist/index-CAp51VNq.js +867 -0
- package/dist/index-Is-rTdaY.js +867 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1706 -0
- package/dist/sdk/agent.d.ts +21 -0
- package/dist/sdk/agent.d.ts.map +1 -0
- package/dist/sdk/artifacts.d.ts +29 -0
- package/dist/sdk/artifacts.d.ts.map +1 -0
- package/dist/sdk/bindings/host-agent.d.ts +16 -0
- package/dist/sdk/bindings/host-agent.d.ts.map +1 -0
- package/dist/sdk/bindings/index.d.ts +7 -0
- package/dist/sdk/bindings/index.d.ts.map +1 -0
- package/dist/sdk/bindings/index.js +14 -0
- package/dist/sdk/bindings/init.d.ts +30 -0
- package/dist/sdk/bindings/init.d.ts.map +1 -0
- package/dist/sdk/bindings/markers.d.ts +9 -0
- package/dist/sdk/bindings/markers.d.ts.map +1 -0
- package/dist/sdk/bindings/tool-preparation.d.ts +12 -0
- package/dist/sdk/bindings/tool-preparation.d.ts.map +1 -0
- package/dist/sdk/bindings/turn-loop.d.ts +5 -0
- package/dist/sdk/bindings/turn-loop.d.ts.map +1 -0
- package/dist/sdk/bindings/types.d.ts +60 -0
- package/dist/sdk/bindings/types.d.ts.map +1 -0
- package/dist/sdk/context.d.ts +2 -0
- package/dist/sdk/context.d.ts.map +1 -0
- package/dist/sdk/errors.d.ts +8 -0
- package/dist/sdk/errors.d.ts.map +1 -0
- package/dist/sdk/events.d.ts +9 -0
- package/dist/sdk/events.d.ts.map +1 -0
- package/dist/sdk/index.d.ts +16 -0
- package/dist/sdk/index.d.ts.map +1 -0
- package/dist/sdk/init.d.ts +2 -0
- package/dist/sdk/init.d.ts.map +1 -0
- package/dist/sdk/internal/engine.d.ts +4 -0
- package/dist/sdk/internal/engine.d.ts.map +1 -0
- package/dist/sdk/internal/events.d.ts +30 -0
- package/dist/sdk/internal/events.d.ts.map +1 -0
- package/dist/sdk/internal/logger.d.ts +51 -0
- package/dist/sdk/internal/logger.d.ts.map +1 -0
- package/dist/sdk/internal/providers/anthropic.d.ts +75 -0
- package/dist/sdk/internal/providers/anthropic.d.ts.map +1 -0
- package/dist/sdk/internal/providers/openai.d.ts +13 -0
- package/dist/sdk/internal/providers/openai.d.ts.map +1 -0
- package/dist/sdk/internal/providers/types.d.ts +57 -0
- package/dist/sdk/internal/providers/types.d.ts.map +1 -0
- package/dist/sdk/internal/stores/indexedDb.d.ts +3 -0
- package/dist/sdk/internal/stores/indexedDb.d.ts.map +1 -0
- package/dist/sdk/internal/stores/persistence.d.ts +13 -0
- package/dist/sdk/internal/stores/persistence.d.ts.map +1 -0
- package/dist/sdk/internal/tools/artifact.d.ts +3 -0
- package/dist/sdk/internal/tools/artifact.d.ts.map +1 -0
- package/dist/sdk/internal/tools/browser.d.ts +19 -0
- package/dist/sdk/internal/tools/browser.d.ts.map +1 -0
- package/dist/sdk/internal/tools/browserRuntime.d.ts +47 -0
- package/dist/sdk/internal/tools/browserRuntime.d.ts.map +1 -0
- package/dist/sdk/internal/tools/liveRuntime.d.ts +12 -0
- package/dist/sdk/internal/tools/liveRuntime.d.ts.map +1 -0
- package/dist/sdk/internal/tools/registry.d.ts +17 -0
- package/dist/sdk/internal/tools/registry.d.ts.map +1 -0
- package/dist/sdk/internal/tools/service.d.ts +15 -0
- package/dist/sdk/internal/tools/service.d.ts.map +1 -0
- package/dist/sdk/internal/util/types.d.ts +6 -0
- package/dist/sdk/internal/util/types.d.ts.map +1 -0
- package/dist/sdk/model.d.ts +16 -0
- package/dist/sdk/model.d.ts.map +1 -0
- package/dist/sdk/orchestration/agent-engine.d.ts +24 -0
- package/dist/sdk/orchestration/agent-engine.d.ts.map +1 -0
- package/dist/sdk/orchestration/config-builders.d.ts +13 -0
- package/dist/sdk/orchestration/config-builders.d.ts.map +1 -0
- package/dist/sdk/orchestration/model-adapter.d.ts +10 -0
- package/dist/sdk/orchestration/model-adapter.d.ts.map +1 -0
- package/dist/sdk/snapshot.d.ts +7 -0
- package/dist/sdk/snapshot.d.ts.map +1 -0
- package/dist/sdk/stores.d.ts +22 -0
- package/dist/sdk/stores.d.ts.map +1 -0
- package/dist/sdk/tools.d.ts +32 -0
- package/dist/sdk/tools.d.ts.map +1 -0
- package/dist/sdk/types.d.ts +200 -0
- package/dist/sdk/types.d.ts.map +1 -0
- package/package.json +107 -5
- package/pi_host_web.d.ts +4 -17
- package/pi_host_web.js +1 -13
- package/pi_host_web_bg.wasm +0 -0
- package/pi_host_web_bg.wasm.d.ts +36 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"Irving Ou <irving@pi-oxide.dev>"
|
|
6
6
|
],
|
|
7
7
|
"description": "WASM host for pi-core. Browser FileSystem Access API, fetch(), JS event loop.",
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "0.8.0",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -13,12 +13,114 @@
|
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"pi_host_web_bg.wasm",
|
|
16
|
+
"pi_host_web_bg.wasm.d.ts",
|
|
16
17
|
"pi_host_web.js",
|
|
17
|
-
"pi_host_web.d.ts"
|
|
18
|
+
"pi_host_web.d.ts",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"dist/bindings.d.ts",
|
|
22
|
+
"dist/index-CAp51VNq.js",
|
|
23
|
+
"dist/index-Is-rTdaY.js",
|
|
24
|
+
"dist/index.d.ts",
|
|
25
|
+
"dist/index.js",
|
|
26
|
+
"dist/sdk/agent.d.ts",
|
|
27
|
+
"dist/sdk/agent.d.ts.map",
|
|
28
|
+
"dist/sdk/artifacts.d.ts",
|
|
29
|
+
"dist/sdk/artifacts.d.ts.map",
|
|
30
|
+
"dist/sdk/bindings/host-agent.d.ts",
|
|
31
|
+
"dist/sdk/bindings/host-agent.d.ts.map",
|
|
32
|
+
"dist/sdk/bindings/index.d.ts",
|
|
33
|
+
"dist/sdk/bindings/index.d.ts.map",
|
|
34
|
+
"dist/sdk/bindings/index.js",
|
|
35
|
+
"dist/sdk/bindings/init.d.ts",
|
|
36
|
+
"dist/sdk/bindings/init.d.ts.map",
|
|
37
|
+
"dist/sdk/bindings/markers.d.ts",
|
|
38
|
+
"dist/sdk/bindings/markers.d.ts.map",
|
|
39
|
+
"dist/sdk/bindings/tool-preparation.d.ts",
|
|
40
|
+
"dist/sdk/bindings/tool-preparation.d.ts.map",
|
|
41
|
+
"dist/sdk/bindings/turn-loop.d.ts",
|
|
42
|
+
"dist/sdk/bindings/turn-loop.d.ts.map",
|
|
43
|
+
"dist/sdk/bindings/types.d.ts",
|
|
44
|
+
"dist/sdk/bindings/types.d.ts.map",
|
|
45
|
+
"dist/sdk/context.d.ts",
|
|
46
|
+
"dist/sdk/context.d.ts.map",
|
|
47
|
+
"dist/sdk/errors.d.ts",
|
|
48
|
+
"dist/sdk/errors.d.ts.map",
|
|
49
|
+
"dist/sdk/events.d.ts",
|
|
50
|
+
"dist/sdk/events.d.ts.map",
|
|
51
|
+
"dist/sdk/index.d.ts",
|
|
52
|
+
"dist/sdk/index.d.ts.map",
|
|
53
|
+
"dist/sdk/init.d.ts",
|
|
54
|
+
"dist/sdk/init.d.ts.map",
|
|
55
|
+
"dist/sdk/internal/engine.d.ts",
|
|
56
|
+
"dist/sdk/internal/engine.d.ts.map",
|
|
57
|
+
"dist/sdk/internal/events.d.ts",
|
|
58
|
+
"dist/sdk/internal/events.d.ts.map",
|
|
59
|
+
"dist/sdk/internal/logger.d.ts",
|
|
60
|
+
"dist/sdk/internal/logger.d.ts.map",
|
|
61
|
+
"dist/sdk/internal/providers/anthropic.d.ts",
|
|
62
|
+
"dist/sdk/internal/providers/anthropic.d.ts.map",
|
|
63
|
+
"dist/sdk/internal/providers/openai.d.ts",
|
|
64
|
+
"dist/sdk/internal/providers/openai.d.ts.map",
|
|
65
|
+
"dist/sdk/internal/providers/types.d.ts",
|
|
66
|
+
"dist/sdk/internal/providers/types.d.ts.map",
|
|
67
|
+
"dist/sdk/internal/stores/indexedDb.d.ts",
|
|
68
|
+
"dist/sdk/internal/stores/indexedDb.d.ts.map",
|
|
69
|
+
"dist/sdk/internal/stores/persistence.d.ts",
|
|
70
|
+
"dist/sdk/internal/stores/persistence.d.ts.map",
|
|
71
|
+
"dist/sdk/internal/tools/artifact.d.ts",
|
|
72
|
+
"dist/sdk/internal/tools/artifact.d.ts.map",
|
|
73
|
+
"dist/sdk/internal/tools/browser.d.ts",
|
|
74
|
+
"dist/sdk/internal/tools/browser.d.ts.map",
|
|
75
|
+
"dist/sdk/internal/tools/browserRuntime.d.ts",
|
|
76
|
+
"dist/sdk/internal/tools/browserRuntime.d.ts.map",
|
|
77
|
+
"dist/sdk/internal/tools/liveRuntime.d.ts",
|
|
78
|
+
"dist/sdk/internal/tools/liveRuntime.d.ts.map",
|
|
79
|
+
"dist/sdk/internal/tools/registry.d.ts",
|
|
80
|
+
"dist/sdk/internal/tools/registry.d.ts.map",
|
|
81
|
+
"dist/sdk/internal/tools/service.d.ts",
|
|
82
|
+
"dist/sdk/internal/tools/service.d.ts.map",
|
|
83
|
+
"dist/sdk/internal/util/types.d.ts",
|
|
84
|
+
"dist/sdk/internal/util/types.d.ts.map",
|
|
85
|
+
"dist/sdk/model.d.ts",
|
|
86
|
+
"dist/sdk/model.d.ts.map",
|
|
87
|
+
"dist/sdk/orchestration/agent-engine.d.ts",
|
|
88
|
+
"dist/sdk/orchestration/agent-engine.d.ts.map",
|
|
89
|
+
"dist/sdk/orchestration/config-builders.d.ts",
|
|
90
|
+
"dist/sdk/orchestration/config-builders.d.ts.map",
|
|
91
|
+
"dist/sdk/orchestration/model-adapter.d.ts",
|
|
92
|
+
"dist/sdk/orchestration/model-adapter.d.ts.map",
|
|
93
|
+
"dist/sdk/snapshot.d.ts",
|
|
94
|
+
"dist/sdk/snapshot.d.ts.map",
|
|
95
|
+
"dist/sdk/stores.d.ts",
|
|
96
|
+
"dist/sdk/stores.d.ts.map",
|
|
97
|
+
"dist/sdk/tools.d.ts",
|
|
98
|
+
"dist/sdk/tools.d.ts.map",
|
|
99
|
+
"dist/sdk/types.d.ts",
|
|
100
|
+
"dist/sdk/types.d.ts.map"
|
|
18
101
|
],
|
|
19
|
-
"main": "
|
|
20
|
-
"types": "
|
|
102
|
+
"main": "dist/index.js",
|
|
103
|
+
"types": "dist/index.d.ts",
|
|
21
104
|
"sideEffects": [
|
|
22
105
|
"./snippets/*"
|
|
23
|
-
]
|
|
106
|
+
],
|
|
107
|
+
"exports": {
|
|
108
|
+
".": {
|
|
109
|
+
"import": "./dist/index.js",
|
|
110
|
+
"types": "./dist/index.d.ts"
|
|
111
|
+
},
|
|
112
|
+
"./bindings": {
|
|
113
|
+
"import": "./dist/sdk/bindings/index.js",
|
|
114
|
+
"types": "./dist/sdk/bindings/index.d.ts"
|
|
115
|
+
},
|
|
116
|
+
"./raw": {
|
|
117
|
+
"import": "./pi_host_web.js",
|
|
118
|
+
"types": "./pi_host_web.d.ts"
|
|
119
|
+
},
|
|
120
|
+
"./package.json": "./package.json"
|
|
121
|
+
},
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"zod": "^3.24.0",
|
|
124
|
+
"zod-to-json-schema": "^3.24.0"
|
|
125
|
+
}
|
|
24
126
|
}
|
package/pi_host_web.d.ts
CHANGED
|
@@ -176,12 +176,6 @@ export interface ToolCall {
|
|
|
176
176
|
arguments: ToolArguments;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
export interface ToolCallPreparation {
|
|
180
|
-
tool_call_id: ToolCallId;
|
|
181
|
-
transform: ToolCallTransform;
|
|
182
|
-
permission: ToolCallPermission;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
179
|
export interface ToolDefinition {
|
|
186
180
|
name: ToolName;
|
|
187
181
|
label: string;
|
|
@@ -237,7 +231,7 @@ export interface UserMessage {
|
|
|
237
231
|
timestamp: number;
|
|
238
232
|
}
|
|
239
233
|
|
|
240
|
-
export type AgentEvent = { type: "agent_start" } | { type: "agent_end" } | { type: "turn_start" } | { type: "turn_end"; message: AgentMessage; tool_results: ToolResultMessage[] } | { type: "message_start"; message: AgentMessage } | { type: "message_update"; message: AgentMessage; delta: ContentDelta } | { type: "message_end"; message: AgentMessage } | { type: "tool_execution_start"; tool_call_id: ToolCallId; tool_name: ToolName; args?: ToolArguments } | { type: "tool_execution_update"; tool_call_id: ToolCallId; stream: ToolOutputStream; chunk: string; sequence: number; timestamp: number } | { type: "tool_execution_end"; tool_call_id: ToolCallId;
|
|
234
|
+
export type AgentEvent = { type: "agent_start" } | { type: "agent_end" } | { type: "turn_start" } | { type: "turn_end"; message: AgentMessage; tool_results: ToolResultMessage[] } | { type: "message_start"; message: AgentMessage } | { type: "message_update"; message: AgentMessage; delta: ContentDelta } | { type: "message_end"; message: AgentMessage } | { type: "tool_execution_start"; tool_call_id: ToolCallId; tool_name: ToolName; args?: ToolArguments } | { type: "tool_execution_update"; tool_call_id: ToolCallId; stream: ToolOutputStream; chunk: string; sequence: number; timestamp: number } | { type: "tool_execution_end"; tool_call_id: ToolCallId; result: ToolResult; is_error: boolean } | { type: "tool_execution_cancelled"; tool_call_id: ToolCallId; reason: CancelReason } | { type: "queue_update"; steer: AgentMessage[]; follow_up: AgentMessage[] } | { type: "save_point"; had_pending_writes: boolean } | { type: "settled" };
|
|
241
235
|
|
|
242
236
|
export type AgentMessage = ({ role: "user" } & UserMessage) | ({ role: "assistant" } & AssistantMessage) | ({ role: "tool_result" } & ToolResultMessage);
|
|
243
237
|
|
|
@@ -253,7 +247,7 @@ export type ContentDelta = { kind: "text_start" } | { kind: "text_delta"; text:
|
|
|
253
247
|
|
|
254
248
|
export type ExecutionMode = "parallel" | "sequential";
|
|
255
249
|
|
|
256
|
-
export type HostDirective = { type: "stream_llm"; context: LlmContext } | { type: "
|
|
250
|
+
export type HostDirective = { type: "stream_llm"; context: LlmContext } | { type: "execute_tools"; calls: ToolCall[] } | { type: "cancel_tools"; tool_call_ids: ToolCallId[]; reason: CancelReason } | { type: "persist" } | { type: "summarize"; context: LlmContext } | { type: "finished" } | { type: "wait_for_input"; mode: WaitMode };
|
|
257
251
|
|
|
258
252
|
export type JsonSchema = Value;
|
|
259
253
|
|
|
@@ -281,10 +275,6 @@ export type ToolArguments = Value;
|
|
|
281
275
|
|
|
282
276
|
export type ToolCallId = string;
|
|
283
277
|
|
|
284
|
-
export type ToolCallPermission = { type: "allow" } | { type: "block"; reason: string };
|
|
285
|
-
|
|
286
|
-
export type ToolCallTransform = { type: "none" } | { type: "rewrite_args"; arguments: ToolArguments };
|
|
287
|
-
|
|
288
278
|
export type ToolDetails = Value;
|
|
289
279
|
|
|
290
280
|
export type ToolName = string;
|
|
@@ -322,8 +312,6 @@ export function hostFeedLlmChunk(handle: number, chunk: LlmChunk): TurnResultRes
|
|
|
322
312
|
|
|
323
313
|
export function hostLlmDone(handle: number, result: LlmResult): TurnResultResult;
|
|
324
314
|
|
|
325
|
-
export function hostPrepareToolCalls(handle: number, preparations_json: string): TurnResultResult;
|
|
326
|
-
|
|
327
315
|
export function hostReadArtifact(handle: number, artifact_id: string): string;
|
|
328
316
|
|
|
329
317
|
export function hostReset(handle: number): EmptyResult;
|
|
@@ -357,11 +345,11 @@ export interface InitOutput {
|
|
|
357
345
|
readonly estimateTokens: (a: any) => any;
|
|
358
346
|
readonly estimateTokensForText: (a: number, b: number) => any;
|
|
359
347
|
readonly getHostStatePersistData: (a: number) => any;
|
|
348
|
+
readonly hostReadArtifact: (a: number, b: number, c: number) => [number, number, number, number];
|
|
349
|
+
readonly hostSearchArtifacts: (a: number, b: number, c: number) => [number, number, number];
|
|
360
350
|
readonly restoreHostState: (a: any) => any;
|
|
361
351
|
readonly restoreHostStateFromJson: (a: number, b: number) => any;
|
|
362
352
|
readonly setLogLevel: (a: number, b: number) => void;
|
|
363
|
-
readonly hostReadArtifact: (a: number, b: number, c: number) => [number, number, number, number];
|
|
364
|
-
readonly hostSearchArtifacts: (a: number, b: number, c: number) => [number, number, number];
|
|
365
353
|
readonly createHostAgent: (a: any, b: any) => any;
|
|
366
354
|
readonly destroyHostAgent: (a: number) => any;
|
|
367
355
|
readonly getHostAgentPersistData: (a: number) => any;
|
|
@@ -370,7 +358,6 @@ export interface InitOutput {
|
|
|
370
358
|
readonly hostContinueTurn: (a: number) => any;
|
|
371
359
|
readonly hostFeedLlmChunk: (a: number, b: any) => any;
|
|
372
360
|
readonly hostLlmDone: (a: number, b: any) => any;
|
|
373
|
-
readonly hostPrepareToolCalls: (a: number, b: number, c: number) => any;
|
|
374
361
|
readonly hostReset: (a: number) => any;
|
|
375
362
|
readonly hostSteer: (a: number, b: any) => any;
|
|
376
363
|
readonly hostToolCancelled: (a: number, b: number, c: number, d: any) => any;
|
package/pi_host_web.js
CHANGED
|
@@ -128,18 +128,6 @@ export function hostLlmDone(handle, result) {
|
|
|
128
128
|
return ret;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
/**
|
|
132
|
-
* @param {number} handle
|
|
133
|
-
* @param {string} preparations_json
|
|
134
|
-
* @returns {TurnResultResult}
|
|
135
|
-
*/
|
|
136
|
-
export function hostPrepareToolCalls(handle, preparations_json) {
|
|
137
|
-
const ptr0 = passStringToWasm0(preparations_json, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
138
|
-
const len0 = WASM_VECTOR_LEN;
|
|
139
|
-
const ret = wasm.hostPrepareToolCalls(handle, ptr0, len0);
|
|
140
|
-
return ret;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
131
|
/**
|
|
144
132
|
* @param {number} handle
|
|
145
133
|
* @param {string} artifact_id
|
|
@@ -685,4 +673,4 @@ async function __wbg_init(module_or_path) {
|
|
|
685
673
|
return __wbg_finalize_init(instance, module);
|
|
686
674
|
}
|
|
687
675
|
|
|
688
|
-
export { __wbg_init as default
|
|
676
|
+
export { initSync, __wbg_init as default };
|
package/pi_host_web_bg.wasm
CHANGED
|
Binary file
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export const memory: WebAssembly.Memory;
|
|
4
|
+
export const createHostState: (a: any) => any;
|
|
5
|
+
export const destroyHostState: (a: number) => any;
|
|
6
|
+
export const estimateTokens: (a: any) => any;
|
|
7
|
+
export const estimateTokensForText: (a: number, b: number) => any;
|
|
8
|
+
export const getHostStatePersistData: (a: number) => any;
|
|
9
|
+
export const hostReadArtifact: (a: number, b: number, c: number) => [number, number, number, number];
|
|
10
|
+
export const hostSearchArtifacts: (a: number, b: number, c: number) => [number, number, number];
|
|
11
|
+
export const restoreHostState: (a: any) => any;
|
|
12
|
+
export const restoreHostStateFromJson: (a: number, b: number) => any;
|
|
13
|
+
export const setLogLevel: (a: number, b: number) => void;
|
|
14
|
+
export const createHostAgent: (a: any, b: any) => any;
|
|
15
|
+
export const destroyHostAgent: (a: number) => any;
|
|
16
|
+
export const getHostAgentPersistData: (a: number) => any;
|
|
17
|
+
export const hostAbort: (a: number) => any;
|
|
18
|
+
export const hostAcceptCompaction: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
19
|
+
export const hostContinueTurn: (a: number) => any;
|
|
20
|
+
export const hostFeedLlmChunk: (a: number, b: any) => any;
|
|
21
|
+
export const hostLlmDone: (a: number, b: any) => any;
|
|
22
|
+
export const hostReset: (a: number) => any;
|
|
23
|
+
export const hostSteer: (a: number, b: any) => any;
|
|
24
|
+
export const hostToolCancelled: (a: number, b: number, c: number, d: any) => any;
|
|
25
|
+
export const hostToolDone: (a: number, b: any, c: any) => any;
|
|
26
|
+
export const hostToolFailed: (a: number, b: any, c: any) => any;
|
|
27
|
+
export const restoreHostAgent: (a: any, b: any) => any;
|
|
28
|
+
export const startTurn: (a: number, b: any) => any;
|
|
29
|
+
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
30
|
+
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
31
|
+
export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
32
|
+
export const __wbindgen_exn_store: (a: number) => void;
|
|
33
|
+
export const __externref_table_alloc: () => number;
|
|
34
|
+
export const __wbindgen_externrefs: WebAssembly.Table;
|
|
35
|
+
export const __externref_table_dealloc: (a: number) => void;
|
|
36
|
+
export const __wbindgen_start: () => void;
|