1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/app-desktop/gui/NoteEditor/commands/showRevisions.ts
2020-11-05 16:58:23 +00:00

14 lines
303 B
TypeScript

import { CommandRuntime, CommandDeclaration } from '@joplinapp/lib/services/CommandService';
export const declaration:CommandDeclaration = {
name: 'showRevisions',
};
export const runtime = (comp:any):CommandRuntime => {
return {
execute: async () => {
comp.setShowRevisions(true);
},
};
};