export abstract class Parsed { protected internal: T; constructor(toParse: T) { this.internal = toParse; } public getInternal(): T { return this.internal; } }