/** * Transforms the given content into something else. */ interface ContentTransformer { transform(content: string) : string; }