@xutest1/sdk 0.1.8 → 0.2.1

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/client.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ export * from "./gen/types.gen.js";
2
+ export { type Config as OpencodeClientConfig, OpencodeClient };
3
+ export { type Config as A3codeClientConfig };
4
+ export { OpencodeClient as A3codeClient };
5
+ import { type Config } from "./gen/client/types.gen.js";
6
+ import { OpencodeClient } from "./gen/sdk.gen.js";
7
+ export declare function createOpencodeClient(config?: Config): OpencodeClient;
8
+ export declare const createA3codeClient: typeof createOpencodeClient;