UNPKG
@prexo/ai-chat-sdk
Version:
beta (1.0.1-beta.1)
latest (1.1.0)
1.1.0
1.0.1
1.0.1-beta.1
1.0.0
0.1.6
AI Chat Component with Persistent History
prexoai.xyz
SkidGod4444/prexo
@prexo/ai-chat-sdk
/
dist
/
client
/
components
/
custom
/
message.d.ts
10 lines
(7 loc)
•
197 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
__default
from
'react'
;
import
{
UIMessage
}
from
'ai'
;
interface
MessageProps
{
message
:
UIMessage
; }
declare
const
Message
:
React
__default.
FC
<
MessageProps
>;
export
{
Message
};