@cossistant/next
Version:
Next.js-ready SDK for building AI-powered support/chat widgets. Hooks + primitives, WS-driven, TypeScript-first. Next.js-ready, Tailwind optional.
13 lines (12 loc) • 350 B
TypeScript
//#region ../react/src/hooks/private/typing.d.ts
type TimelineTypingParticipant = {
id: string;
type: "team_member" | "ai";
};
type PreviewTypingParticipant = TimelineTypingParticipant & {
name: string;
image: string | null;
};
//#endregion
export { PreviewTypingParticipant, TimelineTypingParticipant };
//# sourceMappingURL=typing.d.ts.map