@inworld/web-core
Version:
13 lines (12 loc) • 435 B
TypeScript
import * as z from "zod";
export declare const CancelResponsesEventSchema: z.ZodObject<{
interaction_id: z.ZodOptional<z.ZodString>;
utterance_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
}, "strip", z.ZodTypeAny, {
interaction_id?: string;
utterance_id?: string[];
}, {
interaction_id?: string;
utterance_id?: string[];
}>;
export type CancelResponsesEvent = z.infer<typeof CancelResponsesEventSchema>;