You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-12-20 23:30:05 +02:00
14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
|
|
import { CommandDeclaration, CommandRuntime } from '../../../lib/services/CommandService';
|
||
|
|
|
||
|
|
export const declaration:CommandDeclaration = {
|
||
|
|
name: 'hideModalMessage',
|
||
|
|
};
|
||
|
|
|
||
|
|
export const runtime = (comp:any):CommandRuntime => {
|
||
|
|
return {
|
||
|
|
execute: async () => {
|
||
|
|
comp.setState({ modalLayer: { visible: false, message: '' } });
|
||
|
|
},
|
||
|
|
};
|
||
|
|
};
|