Files
ionic-framework/react/src/components/IonLoading.tsx
2019-06-19 21:33:50 +02:00

7 lines
311 B
TypeScript

import { JSX, loadingController } from '@ionic/core';
import { createControllerComponent } from './createControllerComponent';
export type LoadingOptions = JSX.IonLoading;
export const IonLoading = /*@__PURE__*/createControllerComponent<LoadingOptions, HTMLIonLoadingElement>('IonLoading', loadingController)