@eclipse-glsp/graph
Version:
The typescript implementation of the GLSP graphical model (GModel)
12 lines • 499 B
TypeScript
import { GLayouting } from './glayouting';
import { GShapeElement, GShapeElementBuilder } from './gshape-element';
export declare class GCompartment extends GShapeElement implements GLayouting {
static builder(): GCompartmentBuilder;
type: string;
layout?: string;
[GLayouting]: boolean;
}
export declare class GCompartmentBuilder<G extends GCompartment = GCompartment> extends GShapeElementBuilder<G> {
layout(layout?: string): this;
}
//# sourceMappingURL=gcompartment.d.ts.map