import { type Writable } from "svelte/store"; export function partialSet>(store: Writable, partial: Partial) { store.update(s => ({ ...s, ...partial })); }