9 lines
149 B
TypeScript
9 lines
149 B
TypeScript
|
|
|
|
export const reactiveQueryArgs = <T>(cb: () => T) => {
|
|
const store = writable<T>();
|
|
$effect.pre(() => {
|
|
store.set(cb());
|
|
});
|
|
return store;
|
|
}; |