@assistant-ui/react
Version:
TypeScript/React library for AI Chat
14 lines (9 loc) • 335 B
text/typescript
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;
};