You've already forked joplin
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:
@ -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');
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user