Ariver
2026-06-03 0fad08ddf196001465a44947dbc7b9ef26ea3707
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);