fix(all): strong typing for color

This commit is contained in:
Manu Mtz.-Almeida
2018-05-14 13:51:30 +02:00
parent 87fe5ce3a8
commit 618f708bc4
48 changed files with 186 additions and 157 deletions

View File

@ -1,5 +1,5 @@
import { Component, Element, Listen, Method, Prop } from '@stencil/core';
import { Config, Mode, QueueController } from '../../interface';
import { Color, Config, Mode, QueueController } from '../../interface';
@Component({
@ -14,7 +14,7 @@ export class Content {
private scrollEl?: HTMLIonScrollElement;
mode!: Mode;
color!: string;
color?: Color;
@Element() el!: HTMLElement;