File size: 193 Bytes
d6fedfa
be97094
 
 
d6fedfa
3207814
be97094
1
2
3
4
5
6
7

import {
    writable, type Writable, get
} from 'svelte/store';

export const pipelineValues = writable({} as Record<string, any>);
export const getPipelineValues = () => get(pipelineValues);