1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/generator-joplin/generators/app/templates/api/Global.d.ts

15 lines
270 B
TypeScript
Raw Normal View History

import Plugin from '../Plugin';
import Joplin from './Joplin';
2021-05-10 11:33:28 +02:00
/**
* @ignore
*/
/**
* @ignore
*/
export default class Global {
private joplin_;
2020-11-23 19:06:52 +02:00
constructor(implementation: any, plugin: Plugin, store: any);
get joplin(): Joplin;
get process(): any;
}