fix(): export const RefresherState so that d.ts file is created for refresher.tsx

This commit is contained in:
Josh Thomas
2018-01-19 09:35:49 -06:00
parent 39d38f768f
commit 190eb1443d

View File

@ -1,7 +1,7 @@
import { Component, Element, Event, EventEmitter, Method, Prop, State } from '@stencil/core';
import { DomController, GestureDetail } from '../../index';
const enum RefresherState {
export const enum RefresherState {
Inactive = 1 << 0,
Pulling = 1 << 1,
Ready = 1 << 2,