UNPKG

@tripsnek/tmf

Version:

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

13 lines 365 B
/** * Generic type for pairing two instances together. This is not a * part of the TMF metamodel, and thus cannot be serialized * or persisted without special logic. */ export declare class Pair<T1, T2> { private first; private second; constructor(first: T1, second: T2); getFirst(): T1; getSecond(): T2; } //# sourceMappingURL=pair.d.ts.map