mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-03 02:20:19 +08:00
feat: optimize electron macos header style (#1774)
Co-authored-by: himself65 <himself65@outlook.com>
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
interface Window {
|
||||
/**
|
||||
* After analyzing the `exposeInMainWorld` calls,
|
||||
* `packages/preload/exposedInMainWorld.d.ts` file will be generated.
|
||||
* It contains all interfaces.
|
||||
* `packages/preload/exposedInMainWorld.d.ts` file is required for TS is `renderer`
|
||||
*
|
||||
* @see https://github.com/cawa-93/dts-for-context-bridge
|
||||
*/
|
||||
readonly apis: {
|
||||
workspaceSync: (id: string) => Promise<any>;
|
||||
onThemeChange: (theme: string) => Promise<any>;
|
||||
onSidebarVisibilityChange: (visible: boolean) => Promise<any>;
|
||||
};
|
||||
readonly appInfo: { electron: boolean; isMacOS: boolean };
|
||||
}
|
||||
Reference in New Issue
Block a user