Spaces:
Running
on
A100
Running
on
A100
File size: 479 Bytes
fe66ec6 cd353d4 fe66ec6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { derived, get, writable, type Readable, type Writable } from 'svelte/store';
export const pipelineValues: Writable<Record<string, any>> = writable({});
export const deboucedPipelineValues: Readable<Record<string, any>> = derived(
pipelineValues,
($pipelineValues, set) => {
const debounced = setTimeout(() => {
set($pipelineValues);
}, 100);
return () => clearTimeout(debounced);
}
);
export const getPipelineValues = () => get(pipelineValues);
|