export interface Comparable { compareTo(o: T): number; } export interface Destroyable { destroy(): void; }