style(components): fix types and remove unused imports

This commit is contained in:
Brandy Carney
2017-07-12 16:04:44 -04:00
parent db9e9d9159
commit 14502ebb72

View File

@ -1,5 +1,6 @@
import { Component, h, Listen, Prop, PropDidChange } from '@stencil/core'; import { Component, h, Listen, Prop, PropDidChange } from '@stencil/core';
import { SegmentButtonEvent, VNodeData } from '../../utils/interfaces';
import { HostElement, SegmentButtonEvent, VNodeData } from '../../utils/interfaces';
/** /**
@ -70,7 +71,7 @@ import { SegmentButtonEvent, VNodeData } from '../../utils/interfaces';
} }
}) })
export class Segment { export class Segment {
buttons: any; buttons: NodeListOf<HostElement>;
$el: HTMLElement; $el: HTMLElement;
@Prop({ state: true }) disabled: boolean = false; @Prop({ state: true }) disabled: boolean = false;