mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-17 18:44:45 +02:00
10 lines
381 B
TypeScript
10 lines
381 B
TypeScript
import joplin from 'api';
|
|
import { ToolbarButtonLocation } from 'api/types';
|
|
|
|
joplin.plugins.register({
|
|
onStart: async function() {
|
|
await joplin.views.toolbarButtons.create('toggleSideBarButton', 'toggleSideBar', ToolbarButtonLocation.NoteToolbar);
|
|
await joplin.views.toolbarButtons.create('toggleNoteListButton', 'toggleNoteList', ToolbarButtonLocation.NoteToolbar);
|
|
},
|
|
});
|