Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
radames/real-time-pix2pix-turbo
Nymbo
/
real-time-pix2pix-turbo
like
0
Paused
App
Files
Files
Community
be97094
real-time-pix2pix-turbo
/
frontend
/
src
/
lib
/
store.ts
radames
blah
be97094
12 months ago
raw
Copy download link
history
blame
193 Bytes
import
{
writable,
type
Writable
, get
}
from
'svelte/store'
;
export
const
pipelineValues =
writable
({}
as
Record
<
string
,
any
>);
export
const
getPipelineValues
= (
) =>
get
(pipelineValues);