Closed badetitou closed 3 years ago
The TypeScript parser does not support the export modifier for classes
export
example:
import { Component, OnDestroy, OnInit } from '@angular/core'; @Component({ templateUrl: './myComponent.component.html' }) export class MyComponent extends OtherClass { }
I changed the grammar to allow for decorators before the export keyword.
The TypeScript parser does not support the
export
modifier for classesexample: