UNPKG

@assistant-ui/react

Version:

TypeScript/React library for AI Chat

14 lines (9 loc) 335 B
import { AttachmentRuntime } from "../../legacy-runtime/runtime"; import { Attachment } from "../../types"; export type AttachmentClientState = Attachment; export type AttachmentClientApi = { getState(): AttachmentClientState; remove(): Promise<void>; /** @internal */ __internal_getRuntime(): AttachmentRuntime | null; };