mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 09:19:56 -05:00
Add updates page scaffold
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export type NavPage =
|
||||
| "home" | "library" | "sources" | "explore"
|
||||
| "home" | "library" | "updates" | "sources" | "explore"
|
||||
| "downloads" | "extensions" | "history" | "search" | "tracking";
|
||||
|
||||
class AppStore {
|
||||
@@ -31,4 +31,4 @@ export function setSearchPrefill(next: string) { app.setSearchPrefill(next);
|
||||
export function setSearchQuery(next: string) { app.setSearchQuery(next); }
|
||||
export function setGenreFilter(next: string) { app.setGenreFilter(next); }
|
||||
export function saveScroll(key: string, top: number) { app.saveScroll(key, top); }
|
||||
export function getScroll(key: string): number { return app.getScroll(key); }
|
||||
export function getScroll(key: string): number { return app.getScroll(key); }
|
||||
|
||||
Reference in New Issue
Block a user