import type { StoreApi } from "zustand"; export type ReadonlyStore = Omit, "setState" | "destroy">; export const writableStore = (store: ReadonlyStore | undefined) => { return store as unknown as StoreApi; };