mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
17 lines
571 B
TypeScript
17 lines
571 B
TypeScript
import { ToolbarButtonLocation } from './types';
|
|
import Plugin from '../Plugin';
|
|
/**
|
|
* Allows creating and managing toolbar buttons.
|
|
*
|
|
* [View the demo plugin](https://github.com/laurent22/joplin/tree/dev/CliClient/tests/support/plugins/register_command)
|
|
*/
|
|
export default class JoplinViewsToolbarButtons {
|
|
private store;
|
|
private plugin;
|
|
constructor(plugin: Plugin, store: any);
|
|
/**
|
|
* Creates a new toolbar button and associate it with the given command.
|
|
*/
|
|
create(commandName: string, location: ToolbarButtonLocation): Promise<void>;
|
|
}
|