dart-archive / angular_analyzer_plugin

WORK MOVED TO dart-lang/angular repository
https://github.com/dart-lang/angular/tree/master/angular_analyzer_plugin
68 stars 13 forks source link

Export classes are not handled by the analyser #686

Open e-belair opened 5 years ago

e-belair commented 5 years ago

I've exported DateTime in the component to use it in the template then I got the error shown below:

@Component(
    selector: 'my-app',
    templateUrl: 'app_component.html',
    directives: [],
    exports: [RoutePaths, Routes, DateTime],
)

image