mirror of
https://github.com/imsyy/SPlayer.git
synced 2025-11-26 03:44:57 +08:00
12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
|
|
import { useStore } from "../store";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 初始化 store IPC 主进程
|
||
|
|
*/
|
||
|
|
const initStoreIpc = (): void => {
|
||
|
|
const store = useStore();
|
||
|
|
if (!store) return;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default initStoreIpc;
|