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

9 lines
160 B
TypeScript
Raw Normal View History

export class Pair<L, R> {
public readonly left: L;
public readonly right: R;
constructor(left: L, right: R) {
this.left = left;
this.right = right;
}
2021-09-24 20:52:14 +02:00
}