UNPKG

@tripsnek/tmf

Version:

TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)

8 lines 301 B
import { EOperation } from './eoperation'; import { ETypedElementImpl } from './etyped-element-impl'; export interface EParameter extends ETypedElementImpl { getEOperation(): EOperation; setEOperation(op: EOperation): void; isOptional(): boolean; } //# sourceMappingURL=eparameter.d.ts.map