1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/lib/commands/historyForward.ts

20 lines
455 B
TypeScript
Raw Normal View History

import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
2020-11-05 18:58:23 +02:00
import { _ } from '../locale';
export const declaration: CommandDeclaration = {
name: 'historyForward',
label: () => _('Forward'),
2020-09-15 15:01:07 +02:00
iconName: 'icon-forward',
};
export const runtime = (): CommandRuntime => {
return {
execute: async () => {
utils.store.dispatch({
type: 'HISTORY_FORWARD',
});
},
enabledCondition: 'historyhasForwardNotes',
};
};