mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
4a88d6ff7a
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
18 lines
476 B
TypeScript
18 lines
476 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'showRevisions',
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
comp.setShowRevisions(true);
|
|
},
|
|
getPriority: () => {
|
|
return comp.isInFocusedDocument() ? 1 : 0;
|
|
},
|
|
};
|
|
};
|