Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coyotte508
/
chat-ui
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-ui
/
src
/
lib
/
stores
/
pendingMessage.ts
coyotte508
A new start
fc69895
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
148 Bytes
import
{ writable }
from
"svelte/store"
;
export
const
pendingMessage = writable<
| {
content
:
string
;
files
:
File
[];
}
|
undefined
>();