1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-27 23:28:38 +02:00
Files
joplin/ReactNativeClient/lib/services/plugins/BasePluginRunner.ts
2020-10-22 14:51:59 +01:00

12 lines
305 B
TypeScript

import Plugin from './Plugin';
import BaseService from '../BaseService';
import Global from './api/Global';
export default abstract class BasePluginRunner extends BaseService {
async run(plugin:Plugin, sandbox:Global):Promise<void> {
throw new Error(`Not implemented: ${plugin} / ${sandbox}`);
}
}