mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
chore: bump electron version (#7922)
This commit is contained in:
@@ -9,6 +9,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@toeverything/infra": "workspace:*",
|
||||
"electron": "~30.2.0"
|
||||
"electron": "^31.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,13 +29,13 @@ type ClientHandler = {
|
||||
} & HelperHandlers;
|
||||
type ClientEvents = MainEvents & HelperEvents;
|
||||
|
||||
export const appInfo = (globalThis as any).appInfo as
|
||||
export const appInfo = (globalThis as any).__appInfo as
|
||||
| typeof exposedAppInfo
|
||||
| null;
|
||||
export const apis = (globalThis as any).apis as ClientHandler | null;
|
||||
export const events = (globalThis as any).events as ClientEvents | null;
|
||||
export const apis = (globalThis as any).__apis as ClientHandler | null;
|
||||
export const events = (globalThis as any).__events as ClientEvents | null;
|
||||
|
||||
export const sharedStorage = (globalThis as any).sharedStorage as
|
||||
export const sharedStorage = (globalThis as any).__sharedStorage as
|
||||
| typeof exposedSharedStorage
|
||||
| null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user