1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-30 10:36:35 +02:00
joplin/ReactNativeClient/lib/commands/historyForward.ts

20 lines
454 B
TypeScript
Raw Normal View History

import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
import { _ } from 'lib/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',
};
};