You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-27 23:28:38 +02:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
![]() |
import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
|
||
|
|
||
|
export const declaration:CommandDeclaration = {
|
||
|
name: 'showRevisions',
|
||
|
};
|
||
|
|
||
|
export const runtime = (comp:any):CommandRuntime => {
|
||
|
return {
|
||
|
execute: async () => {
|
||
|
comp.setShowRevisions(true);
|
||
|
},
|
||
|
};
|
||
|
};
|