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

15 lines
348 B
TypeScript
Raw Normal View History

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