mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
4a88d6ff7a
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
17 lines
395 B
TypeScript
17 lines
395 B
TypeScript
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,
|
|
});
|
|
},
|
|
};
|
|
};
|