mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-10-20 16:48:33 +00:00
19 lines
433 B
TypeScript
19 lines
433 B
TypeScript
import { Command } from '@theia/core/lib/common/command';
|
|
|
|
export namespace CloudUserCommands {
|
|
export const LOGIN: Command = {
|
|
id: 'arduino-cloud--login',
|
|
label: 'Sign in',
|
|
};
|
|
|
|
export const LOGOUT: Command = {
|
|
id: 'arduino-cloud--logout',
|
|
label: 'Sign Out',
|
|
};
|
|
|
|
export const OPEN_PROFILE_CONTEXT_MENU: Command = {
|
|
id: 'arduino-cloud-sketchbook--open-profile-menu',
|
|
label: 'Contextual menu',
|
|
};
|
|
}
|