mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-04-26 17:30:17 +08:00
update:修复github工作流问题
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user