aboutsummaryrefslogtreecommitdiff
path: root/api/Global.d.ts
blob: 686ccf157c132c9f37850b5c7de603d20842cee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Plugin from '../Plugin';
import Joplin from './Joplin';
/**
 * @ignore
 */
/**
 * @ignore
 */
export default class Global {
    private joplin_;
    constructor(implementation: any, plugin: Plugin, store: any);
    get joplin(): Joplin;
    get process(): any;
}