1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Desktop: Add support for plugin imaging API (#8900)

This commit is contained in:
Laurent Cozic
2023-09-17 11:40:50 +01:00
committed by GitHub
parent 8324af5682
commit 3d8c96489f
79 changed files with 7684 additions and 1 deletions

View File

@ -11,6 +11,7 @@ import JoplinContentScripts from './JoplinContentScripts';
import JoplinClipboard from './JoplinClipboard';
import JoplinWindow from './JoplinWindow';
import BasePlatformImplementation from '../BasePlatformImplementation';
import JoplinImaging from './JoplinImaging';
/**
* This is the main entry point to the Joplin API. You can access various services using the provided accessors.
*
@ -26,6 +27,7 @@ import BasePlatformImplementation from '../BasePlatformImplementation';
export default class Joplin {
private data_;
private plugins_;
private imaging_;
private workspace_;
private filters_;
private commands_;
@ -39,6 +41,7 @@ export default class Joplin {
constructor(implementation: BasePlatformImplementation, plugin: Plugin, store: any);
get data(): JoplinData;
get clipboard(): JoplinClipboard;
get imaging(): JoplinImaging;
get window(): JoplinWindow;
get plugins(): JoplinPlugins;
get workspace(): JoplinWorkspace;