mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
55cafb8891
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import PluginService from '@joplin/lib/services/plugins/PluginService';
|
|
|
|
const pluginServiceSetup = () => {
|
|
PluginService.instance().initialize(
|
|
'2.14.0', null, null, { dispatch: ()=>{}, getState: ()=>{} },
|
|
);
|
|
};
|
|
|
|
export default pluginServiceSetup;
|