chore: fix generated types

This commit is contained in:
Sean Perkins
2023-05-03 14:31:04 -04:00
parent 10d2c75f8d
commit 626462ec89
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,6 @@ import { findIonContent, printIonContentErrorMsg } from '@utils/content';
import { CoreDelegate, attachComponent, detachComponent } from '@utils/framework-delegate'; import { CoreDelegate, attachComponent, detachComponent } from '@utils/framework-delegate';
import { raf, inheritAttributes, hasLazyBuild } from '@utils/helpers'; import { raf, inheritAttributes, hasLazyBuild } from '@utils/helpers';
import type { Attributes } from '@utils/helpers'; import type { Attributes } from '@utils/helpers';
import { KEYBOARD_DID_OPEN } from '@utils/keyboard/keyboard';
import { printIonWarning } from '@utils/logging'; import { printIonWarning } from '@utils/logging';
import { Style as StatusBarStyle, StatusBar } from '@utils/native/status-bar'; import { Style as StatusBarStyle, StatusBar } from '@utils/native/status-bar';
import { import {
@ -17,7 +16,6 @@ import {
present, present,
createTriggerController, createTriggerController,
} from '@utils/overlays'; } from '@utils/overlays';
import type { OverlayEventDetail } from '@utils/overlays-interface';
import { getClassMap } from '@utils/theme'; import { getClassMap } from '@utils/theme';
import { deepReady, waitForMount } from '@utils/transition'; import { deepReady, waitForMount } from '@utils/transition';
@ -32,6 +30,8 @@ import type {
Gesture, Gesture,
OverlayInterface, OverlayInterface,
} from '../../interface'; } from '../../interface';
import { KEYBOARD_DID_OPEN } from '../../utils/keyboard/keyboard';
import type { OverlayEventDetail } from '../../utils/overlays-interface';
import { iosEnterAnimation } from './animations/ios.enter'; import { iosEnterAnimation } from './animations/ios.enter';
import { iosLeaveAnimation } from './animations/ios.leave'; import { iosLeaveAnimation } from './animations/ios.leave';

View File

@ -4,13 +4,13 @@ import { CoreDelegate, attachComponent, detachComponent } from '@utils/framework
import { addEventListener, raf, hasLazyBuild } from '@utils/helpers'; import { addEventListener, raf, hasLazyBuild } from '@utils/helpers';
import { printIonWarning } from '@utils/logging'; import { printIonWarning } from '@utils/logging';
import { BACKDROP, dismiss, eventMethod, focusFirstDescendant, prepareOverlay, present } from '@utils/overlays'; import { BACKDROP, dismiss, eventMethod, focusFirstDescendant, prepareOverlay, present } from '@utils/overlays';
import type { OverlayEventDetail } from '@utils/overlays-interface';
import { isPlatform } from '@utils/platform'; import { isPlatform } from '@utils/platform';
import { getClassMap } from '@utils/theme'; import { getClassMap } from '@utils/theme';
import { deepReady, waitForMount } from '@utils/transition'; import { deepReady, waitForMount } from '@utils/transition';
import { getIonMode } from '../../global/ionic-global'; import { getIonMode } from '../../global/ionic-global';
import type { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate } from '../../interface'; import type { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate } from '../../interface';
import type { OverlayEventDetail } from '../../utils/overlays-interface';
import { iosEnterAnimation } from './animations/ios.enter'; import { iosEnterAnimation } from './animations/ios.enter';
import { iosLeaveAnimation } from './animations/ios.leave'; import { iosLeaveAnimation } from './animations/ios.leave';