We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6baad7 commit 229f2f7Copy full SHA for 229f2f7
1 file changed
packages/bridge-stdlib/src/index.ts
@@ -7,6 +7,7 @@
7
*
8
* Separated from core so it can be versioned independently.
9
*/
10
+import type { ToolCallFn } from "@stackables/bridge-types";
11
import { audit } from "./tools/audit.ts";
12
import { createHttpCall } from "./tools/http-call.ts";
13
import * as arrays from "./tools/arrays.ts";
@@ -28,12 +29,17 @@ export const STD_VERSION = "1.5.0";
28
29
30
const httpCallFn = createHttpCall();
31
-export const std = {
32
+export const std: {
33
+ readonly str: typeof strings;
34
+ readonly arr: typeof arrays;
35
+ readonly audit: typeof audit;
36
+ readonly httpCall: ToolCallFn;
37
+} = {
38
str: strings,
39
arr: arrays,
40
audit,
41
httpCall: httpCallFn,
-} as const;
42
+};
43
44
/**
45
* All known built-in tool names as "namespace.tool" strings.
0 commit comments