You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
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,
|
|
});
|
|
},
|
|
};
|
|
};
|