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

@ -1,4 +1,5 @@
import { Component, Listen, Prop } from '@stencil/core';
import { Mode } from '../..';
export interface SelectPopoverOption {
@ -16,13 +17,13 @@ export interface SelectPopoverOption {
}}
)
export class SelectPopover {
private mode: string;
mode!: Mode;
@Prop() header: string;
@Prop() header?: string;
@Prop() subHeader: string;
@Prop() subHeader?: string;
@Prop() message: string;
@Prop() message?: string;
@Prop() options: SelectPopoverOption[] = [];