You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-06 23:56:13 +02:00
Chore: Apply changes from mobile plugins to lib/
and app-desktop/
(#10079)
This commit is contained in:
@ -22,35 +22,35 @@ export interface Joplin {
|
||||
export default class BasePlatformImplementation {
|
||||
|
||||
public get versionInfo(): VersionInfo {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: versionInfo');
|
||||
}
|
||||
|
||||
public get clipboard(): any {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: clipboard');
|
||||
}
|
||||
|
||||
public get nativeImage(): any {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: nativeImage');
|
||||
}
|
||||
|
||||
public get window(): WindowImplementation {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: window');
|
||||
}
|
||||
|
||||
public registerComponent(_name: string, _component: any) {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: registerComponent');
|
||||
}
|
||||
|
||||
public unregisterComponent(_name: string) {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: unregisterComponent');
|
||||
}
|
||||
|
||||
public get joplin(): Joplin {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: joplin');
|
||||
}
|
||||
|
||||
public get imaging(): ImagingImplementation {
|
||||
throw new Error('Not implemented');
|
||||
throw new Error('Not implemented: imaging');
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user