update:修复github工作流问题

This commit is contained in:
2026-03-11 09:38:28 +08:00
parent a2671e2968
commit 5bc68f5a9a
11 changed files with 183 additions and 107 deletions

View File

@@ -11,11 +11,6 @@ export const APM_STORE_STATS_BASE_URL: string =
export const currentApp = ref<App | null>(null);
export const currentAppIsInstalled = ref(false);
const initialMode = (localStorage.getItem("store_mode") as StoreMode) || "hybrid";
const initialMode =
(localStorage.getItem("store_mode") as StoreMode) || "hybrid";
export const currentStoreMode = ref<StoreMode>(initialMode);
declare global {
interface Window {
apm_store: any;
}
}

View File

@@ -138,3 +138,26 @@ export type ChannelPayload = {
message: string;
[k: string]: unknown;
};
export interface CategoryInfo {
zh: string;
origins?: string[];
origin?: "spark" | "apm";
[k: string]: unknown;
}
export interface HomeLink {
name: string;
url: string;
icon: string;
more?: string;
imgUrl?: string;
type?: string;
origin?: "spark" | "apm";
[k: string]: unknown;
}
export interface HomeList {
title: string;
apps: App[];
}