mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
16 lines
467 B
TypeScript
16 lines
467 B
TypeScript
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'switchProfile3',
|
|
label: () => _('Switch to profile %d', 3),
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (_context: CommandContext) => {
|
|
await CommandService.instance().execute('switchProfile', 2);
|
|
},
|
|
};
|
|
};
|