mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
19 lines
453 B
TypeScript
19 lines
453 B
TypeScript
import { CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'toggleNoteList',
|
|
label: () => _('Toggle note list'),
|
|
iconName: 'fas fa-align-justify',
|
|
};
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
comp.props.dispatch({
|
|
type: 'NOTELIST_VISIBILITY_TOGGLE',
|
|
});
|
|
},
|
|
};
|
|
};
|