Ariver
2026-06-03 d04184c47264bd740d85bc2100656ffdb0ff98e5
1
2
3
4
5
6
7
8
9
10
import { writable } from "svelte/store";
 
export interface UpdateInfo {
  version: string;
  releaseNotes: string;
  downloadUrl: string;
}
 
export const updateAvailable = writable<UpdateInfo | null>(null);
export const updateDownloading = writable<boolean>(false);