refactor(all): enable strictPropertyInitialization

This commit is contained in:
Manu Mtz.-Almeida
2018-04-19 18:48:38 +02:00
parent 78bd146ad2
commit 4ea8881f33
129 changed files with 1513 additions and 1664 deletions

View File

@ -15,7 +15,7 @@ export class Backdrop {
private lastClick = -10000;
@Prop({ context: 'document' }) doc: Document;
@Prop({ context: 'document' }) doc!: Document;
/**
* If true, the backdrop will be visible. Defaults to `true`.
@ -35,7 +35,7 @@ export class Backdrop {
/**
* Emitted when the backdrop is tapped.
*/
@Event() ionBackdropTap: EventEmitter;
@Event() ionBackdropTap!: EventEmitter;
componentDidLoad() {
registerBackdrop(this.doc, this);