From 190eb1443d06f4e1b84e676be59bd127532ba28c Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Fri, 19 Jan 2018 09:35:49 -0600 Subject: [PATCH] fix(): export const RefresherState so that d.ts file is created for refresher.tsx --- packages/core/src/components/refresher/refresher.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/refresher/refresher.tsx b/packages/core/src/components/refresher/refresher.tsx index b357bc7fea..39c13fed62 100644 --- a/packages/core/src/components/refresher/refresher.tsx +++ b/packages/core/src/components/refresher/refresher.tsx @@ -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,