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