mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +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,
|
||
|
});
|
||
|
},
|
||
|
};
|
||
|
};
|