mirror of
https://github.com/imsyy/SPlayer.git
synced 2025-11-25 03:14: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;
|