import type { GlobalStore } from '../store/index.js'; export type EMP3PluginType = { name: string; rsConfig: (store: GlobalStore) => Promise; }; export type EMP3PluginFnType = (o: any) => EMP3PluginType;