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

20 lines
455 B
TypeScript

import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
import { _ } from '../locale';
export const declaration: CommandDeclaration = {
name: 'historyForward',
label: () => _('Forward'),
iconName: 'icon-forward',
};
export const runtime = (): CommandRuntime => {
return {
execute: async () => {
utils.store.dispatch({
type: 'HISTORY_FORWARD',
});
},
enabledCondition: 'historyhasForwardNotes',
};
};