From 5d15797cc17ef0af45bb363a22b052798af0a7ae Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Fri, 7 Aug 2020 11:12:20 -0500 Subject: [PATCH] chore(types): separate type/interface imports --- src/declarations/stencil-core/index.ts | 35 ++++++++++++++------------ 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/src/declarations/stencil-core/index.ts b/src/declarations/stencil-core/index.ts index 95c7f202d58..429bb076829 100644 --- a/src/declarations/stencil-core/index.ts +++ b/src/declarations/stencil-core/index.ts @@ -1,43 +1,46 @@ export type { - Build, ChildNode, - Component, ComponentOptions, ComponentDidLoad, ComponentDidUpdate, ComponentInterface, ComponentWillLoad, ComponentWillUpdate, - Element, - Event, EventEmitter, EventOptions, - getAssetPath, - getElement, - getMode, - getRenderingRef, - forceUpdate, FunctionalComponent, FunctionalUtilities, - h, - Host, - Method, MethodOptions, ModeStyles, - Listen, ListenOptions, ListenTargetOptions, JSX, - Prop, PropOptions, QueueApi, RafCallback, + VNode, + VNodeData, +} from '../stencil-public-runtime'; + +export { + Build, + Component, + Element, + Event, + getAssetPath, + getElement, + getMode, + getRenderingRef, + forceUpdate, + h, + Host, + Method, + Listen, + Prop, readTask, setMode, setAssetPath, State, - VNode, - VNodeData, Watch, writeTask, } from '../stencil-public-runtime';