Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
awacke1
/
Authenticate-chat-ui
like
0
Build error
App
Files
Files
Community
afc9e2b
Authenticate-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
;
};