argos/dmp-frontend/src/common/types/pair.ts

9 lines
160 B
TypeScript

export class Pair<L, R> {
public readonly left: L;
public readonly right: R;
constructor(left: L, right: R) {
this.left = left;
this.right = right;
}
}