You are missing a constructor in Class({})
app.DisplayKeystrokePipe = ng.core
.Pipe({
name: "displayKeystroke"
})
.Class({
constructor : function() {},
transform: function() {
}
});
You can read decorators.ts what constructor is required.
source
share