After the update, following code fails with an error:
TS2554: Expected 1 arguments, but got 0.
import { IEventAggregator } from 'aurelia';
export class MyApp {
constructor(
@IEventAggregator private ea: IEventAggregator
) {
}
}
After the update, following code fails with an error:
TS2554: Expected 1 arguments, but got 0.
import { IEventAggregator } from 'aurelia';
export class MyApp {
constructor(
@IEventAggregator private ea: IEventAggregator
) {
}
}
Is it still broken for you in alpha.33 ?
It is fixed. It works for sure in alpha.32.