mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
19 lines
724 B
TypeScript
19 lines
724 B
TypeScript
import { MenuItem, MenuItemLocation } from './types';
|
|
import Plugin from '../Plugin';
|
|
/**
|
|
* Allows creating menus.
|
|
*
|
|
* [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/menu)
|
|
*/
|
|
export default class JoplinViewsMenus {
|
|
private store;
|
|
private plugin;
|
|
constructor(plugin: Plugin, store: any);
|
|
private registerCommandAccelerators;
|
|
/**
|
|
* Creates a new menu from the provided menu items and place it at the given location. As of now, it is only possible to place the
|
|
* menu as a sub-menu of the application build-in menus.
|
|
*/
|
|
create(id: string, label: string, menuItems: MenuItem[], location?: MenuItemLocation): Promise<void>;
|
|
}
|