fix(react): export proper types of animations and gestures (#20311)

This commit is contained in:
Liam DeBeasi
2020-01-27 12:38:18 -05:00
committed by GitHub
parent 44211c11ee
commit 00340885fb
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ export interface CreateAnimationProps {
} }
export class CreateAnimation extends React.PureComponent<CreateAnimationProps> { export class CreateAnimation extends React.PureComponent<CreateAnimationProps> {
private nodes: Map<number, HTMLElement> = new Map(); nodes: Map<number, HTMLElement> = new Map();
animation: Animation; animation: Animation;
constructor(props: any) { constructor(props: any) {

View File

@ -2,7 +2,7 @@
import { defineCustomElements } from '@ionic/core/loader'; import { defineCustomElements } from '@ionic/core/loader';
import { addIcons } from 'ionicons'; import { addIcons } from 'ionicons';
import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons'; import { arrowBackSharp, caretBackSharp, chevronBack, chevronForward, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
export { AlertButton, AlertInput, setupConfig } from '@ionic/core'; export { createAnimation, createGesture, AlertButton, AlertInput, Gesture, GestureConfig, GestureDetail, setupConfig } from '@ionic/core';
export * from './proxies'; export * from './proxies';
// createControllerComponent // createControllerComponent