refactor(): export types, import types from index.d.ts instead of direct link to module

* chore(dependencies): update the lock file

* refactor(): exported all types we're cool with exporting, updated types to be referenced from the src/index.d.ts file instead of local .ts files to prevent hard linking of files together

* chore(build): add tsc task to typecheck code

* chore(action-sheet-controller): fix import style

* fix(): removed unneeded dom controller reference and removed component element reference.
This commit is contained in:
Dan Bucholtz
2017-11-16 10:00:57 -06:00
committed by GitHub
parent 3a5e9784e4
commit ab72d92393
33 changed files with 251 additions and 316 deletions

View File

@@ -4,7 +4,6 @@ import { Component, Element, Event, EventEmitter, Listen, Prop, State } from '@s
import iOSEnterAnimation from './animations/ios.enter';
import iOSLeaveAnimation from './animations/ios.leave';
@Component({
tag: 'ion-loading',
styleUrls: {
@@ -239,3 +238,5 @@ export interface LoadingEvent extends Event {
loading: Loading;
};
}
export { iOSEnterAnimation, iOSLeaveAnimation }