1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/plugins/ToggleSidebars/api/Global.d.ts
2021-01-12 12:28:55 +00:00

15 lines
348 B
TypeScript

import Plugin from '../Plugin';
import Joplin from './Joplin';
/**
* @ignore
*/
export default class Global {
private joplin_;
private requireWhiteList_;
constructor(implementation: any, plugin: Plugin, store: any);
get joplin(): Joplin;
private requireWhiteList;
require(filePath: string): any;
get process(): any;
}