mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
15 lines
440 B
TypeScript
15 lines
440 B
TypeScript
import { CommandDeclaration, CommandRuntime } from '@joplin/lib/services/CommandService';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'hideModalMessage',
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
comp.setState({ modalLayer: { visible: false, message: '' } });
|
|
},
|
|
};
|
|
};
|