UNPKG

@eclipse-glsp/graph

Version:

The typescript implementation of the GLSP graphical model (GModel)

11 lines 511 B
import { GModelElementConstructor } from './gmodel-element'; import { GShapeElement, GShapeElementBuilder } from './gshape-element'; export declare class GButton extends GShapeElement { static builder<G extends GButton = GButton>(constructor?: GModelElementConstructor<G>): GButtonBuilder; type: string; enabled: boolean; } export declare class GButtonBuilder<G extends GButton = GButton> extends GShapeElementBuilder<G> { enabled(enabled: boolean): this; } //# sourceMappingURL=gbutton.d.ts.map