Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
maksym-work
/
chat_ui
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat_ui
/
src
/
lib
/
stores
/
titleUpdate.ts
maksym-work
add chat-ui
e28a7d6
9 months ago
raw
Copy download link
history
blame
contribute
delete
160 Bytes
import
{ writable }
from
"svelte/store"
;
export
interface
TitleUpdate
{
convId
:
string
;
title
:
string
;
}
export
default
writable<
TitleUpdate
|
null
>(
null
);