import { Source, Vertex } from "./Vertex"; export class Listener { constructor(h : (a : A) => void, target : Vertex) { this.h = h; this.target = target; } h : (a : A) => void; target : Vertex; }