1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/app-desktop/gui/WindowCommandsAndDialogs/commands/showModalMessage.ts

17 lines
395 B
TypeScript
Raw Normal View History

import { CommandDeclaration, CommandRuntime, CommandContext } from '@joplin/lib/services/CommandService';
export const declaration: CommandDeclaration = {
name: 'showModalMessage',
};
export const runtime = (): CommandRuntime => {
return {
execute: async (context: CommandContext, message: string) => {
context.dispatch({
type: 'SHOW_MODAL_MESSAGE',
message,
});
},
};
};