Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.08k
Running
App
Files
Files
Community
602
61504f4
chat-ui
/
src
/
lib
/
Types.ts
julien-c
HF staff
move type to its own file
bd8c7a0
verified
over 1 year ago
raw
Copy download link
history
blame
101 Bytes
export
type
Message
=
| {
from
:
'user'
;
content
:
string
;
}
| {
from
:
'bot'
;
content
:
string
;
};