You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-30 23:44:55 +02:00
14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
![]() |
import { CommandContext, CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
||
|
|
||
|
export const declaration: CommandDeclaration = {
|
||
|
name: 'hideModalMessage',
|
||
|
};
|
||
|
|
||
|
export const runtime = (): CommandRuntime => {
|
||
|
return {
|
||
|
execute: async (context: CommandContext) => {
|
||
|
context.dispatch({ type: 'HIDE_MODAL_MESSAGE' });
|
||
|
},
|
||
|
};
|
||
|
};
|