1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-06 23:56:13 +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

@ -3,6 +3,7 @@
import { VersionInfo } from './api/types';
import { Implementation as WindowImplementation } from './api/JoplinWindow';
import { Implementation as ImagingImplementation } from './api/JoplinImaging';
export interface JoplinViewsDialogs {
showMessageBox(message: string): Promise<number>;
@ -47,4 +48,8 @@ export default class BasePlatformImplementation {
throw new Error('Not implemented');
}
public get imaging(): ImagingImplementation {
throw new Error('Not implemented');
}
}