Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
whois
like
20
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
whois
/
src
/
lib
/
stores
/
use-request.ts
enzostvs
HF Staff
fetch
a805a6c
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
188 Bytes
import
{ writable }
from
"svelte/store"
;
export
const
requestStore = writable<{
loading
:
boolean
;
data
:
Record
<
string
,
unknown
> |
null
;
} |
null
>({
loading
:
false
,
data
:
null
});