1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Chore: Fix TS errors

This commit is contained in:
Laurent Cozic
2025-05-05 10:06:47 +01:00
parent 370f6bd70e
commit 981759691d
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ export const declaration: CommandDeclaration = {
export const runtime = (): CommandRuntime => {
return {
execute: async (context: CommandContext, editorViewId = '', show = true) => {
execute: async (context: CommandContext, editorViewId:string = '', show:boolean = true) => {
logger.info('View:', editorViewId, 'Show:', show);
const shownEditorViewIds = Setting.value('plugins.shownEditorViewIds');