mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
20 lines
452 B
TypeScript
20 lines
452 B
TypeScript
import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
|
|
import { _ } from '../locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'historyBackward',
|
|
label: () => _('Back'),
|
|
iconName: 'icon-back',
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
utils.store.dispatch({
|
|
type: 'HISTORY_BACKWARD',
|
|
});
|
|
},
|
|
enabledCondition: 'historyhasBackwardNotes',
|
|
};
|
|
};
|