We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f324108 commit f42fc69Copy full SHA for f42fc69
src/app/compiler/angular/deps/helpers/class-helper.ts
@@ -721,7 +721,9 @@ export class ClassHelper {
721
ts.isPropertyDeclaration(member) ||
722
ts.isPropertySignature(member)
723
) {
724
- properties.push(this.visitProperty(member, sourceFile));
+ if (!inputDecorator && !outputDecorator) {
725
+ properties.push(this.visitProperty(member, sourceFile));
726
+ }
727
} else if (ts.isCallSignatureDeclaration(member)) {
728
properties.push(this.visitCallDeclaration(member, sourceFile));
729
} else if (
0 commit comments