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