mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
fix(react): export proper types of animations and gestures (#20311)
This commit is contained in:
@ -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) {
|
||||||
|
@ -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
|
||||||
|
Reference in New Issue
Block a user