How to use the sprotty/lib.TYPES.Action function in sprotty

To help you get started, we’ve selected a few sprotty examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github eclipsesource / graphical-lsp / client / packages / sprotty-client / src / features / tool-feedback / cursor-feedback.ts View on Github external
    constructor(@inject(TYPES.Action) readonly action: ApplyCursorCSSFeedbackAction) {
        super();
    }
    execute(context: CommandExecutionContext): SModelRoot {
github eclipsesource / graphical-lsp / client / packages / glsp-sprotty / src / features / change-bounds / resize.ts View on Github external
    constructor(@inject(TYPES.Action) public action: SwitchResizeModeAction) {
        super();
    }
github eclipsesource / graphical-lsp / client / packages / sprotty-client / src / features / validation / validate.ts View on Github external
    constructor(@inject(TYPES.Action) protected action: ApplyMarkersAction) {
        super();
    }
github eclipsesource / graphical-lsp / client / packages / sprotty-client / src / features / tool-feedback / change-bounds-tool-feedback.ts View on Github external
    constructor(@inject(TYPES.Action) protected action: HideChangeBoundsToolResizeFeedbackAction) {
        super();
    }