mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'openFolder',
|
|
};
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
return {
|
|
execute: async (context:CommandContext, folderId:string) => {
|
|
context.dispatch({
|
|
type: 'FOLDER_SELECT',
|
|
id: folderId,
|
|
});
|
|
},
|
|
};
|
|
};
|