fix(all): strong typed events

This commit is contained in:
Manu Mtz.-Almeida
2018-04-23 17:26:10 +02:00
parent b8c87c453a
commit d5129df970
44 changed files with 429 additions and 602 deletions

View File

@ -31,12 +31,12 @@ export class SelectOption {
/**
* Emitted when the select option loads.
*/
@Event() ionSelectOptionDidLoad!: EventEmitter;
@Event() ionSelectOptionDidLoad!: EventEmitter<void>;
/**
* Emitted when the select option unloads.
*/
@Event() ionSelectOptionDidUnload!: EventEmitter;
@Event() ionSelectOptionDidUnload!: EventEmitter<void>;
componentWillLoad() {
if (this.value === undefined) {