Skip to content

Type Alias: ChatUserMessage

ts
type ChatUserMessage: {
  type: "user";
  text: string;
};

Type declaration

type

ts
type: "user";

text

ts
text: string;

Defined in

types.ts:117