Skip to content

Commit

Permalink
fix(): export const RefresherState so that d.ts file is created for r…
Browse files Browse the repository at this point in the history
…efresher.tsx
  • Loading branch information
jthoms1 committed Jan 19, 2018
1 parent 39d38f7 commit 190eb14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/refresher/refresher.tsx
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 190eb14

Please sign in to comment.