File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/server/src/common/features/contextactions Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import { injectable } from 'inversify';
1818import { ContextActionsProvider } from './context-actions-provider' ;
1919
2020/**
21- * A {@link ContextActionsProvider} for {@link ServerMenuItem }s.
21+ * A {@link ContextActionsProvider} for {@link MenuItem }s.
2222 */
2323@injectable ( )
2424export abstract class ContextMenuItemProvider implements ContextActionsProvider {
@@ -30,14 +30,13 @@ export abstract class ContextMenuItemProvider implements ContextActionsProvider
3030 }
3131
3232 /**
33- * Returns a list of {@link ServerMenuItem }s for a given list of selected elements at a certain mouse position.
33+ * Returns a list of {@link MenuItem }s for a given list of selected elements at a certain mouse position.
3434 *
3535 * @param selectedElementIds The list of currently selected elementIds.
3636 * @param position The current mouse position.
3737 * @param args Additional arguments.
38- * @returns A list of {@link ServerMenuItem }s for a given list of selected elements at a certain mouse position.
38+ * @returns A list of {@link MenuItem }s for a given list of selected elements at a certain mouse position.
3939 */
40-
4140 abstract getItems ( selectedElementIds : string [ ] , position : Point , args ?: Args ) : MenuItem [ ] ;
4241
4342 /**
You can’t perform that action at this time.
0 commit comments