mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-06-14 16:16:32 +00:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import { injectable } from 'inversify';
|
|
import { FileMenuContribution } from '@theia/workspace/lib/browser';
|
|
import { MenuModelRegistry } from '@theia/core';
|
|
|
|
@injectable()
|
|
export class ArduinoFileMenuContribution extends FileMenuContribution {
|
|
|
|
registerMenus(registry: MenuModelRegistry) {
|
|
}
|
|
|
|
}
|