import { writable, type Writable, get } from 'svelte/store'; export const pipelineValues = writable({} as Record); export const getPipelineValues = () => get(pipelineValues);