Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          3.1.7  ▾
        
         | 
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
import { _ } from '@joplin/lib/locale';
import { profileIdByIndex } from '@joplin/lib/services/profileConfig';
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', profileIdByIndex(context.state.profileConfig, 2));
		},
	};
};