@neovate/code 0.28.3 → 0.28.4
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/cli.mjs +158 -158
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +157 -157
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2142,7 +2142,8 @@ export declare interface SDKSession {
|
|
|
2142
2142
|
readonly sessionId: string;
|
|
2143
2143
|
send(message: string | SDKUserMessage): Promise<void>;
|
|
2144
2144
|
receive(): AsyncGenerator<SDKMessage, void>;
|
|
2145
|
-
|
|
2145
|
+
abort(): Promise<void>;
|
|
2146
|
+
close(): Promise<void>;
|
|
2146
2147
|
[Symbol.asyncDispose](): Promise<void>;
|
|
2147
2148
|
}
|
|
2148
2149
|
|