Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mithril-security
/
blind_chat
like
105
Runtime error
App
Files
Files
Community
1
5528541
blind_chat
/
src
/
lib
/
stores
/
pendingMessageIdToRetry.ts
lauro1
test
faca43f
about 1 year ago
raw
Copy download link
history
blame
Safe
170 Bytes
import
type
{
Message
}
from
"$lib/types/Message"
;
import
{ writable }
from
"svelte/store"
;
export
const
pendingMessageIdToRetry = writable<
Message
[
"id"
] |
null
>(
null
);