UNPKG

sodiumjs

Version:

A Functional Reactive Programming (FRP) library for JavaScript

9 lines (8 loc) 137 B
export class Tuple2<A,B> { constructor(a : A, b : B) { this.a = a; this.b = b; } a : A; b : B; }