1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-desktop/gui/NoteEditor/commands/showRevisions.ts

14 lines
303 B
TypeScript
Raw Normal View History

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