@ionic/react
Version:
React specific wrapper for @ionic/core
13 lines (12 loc) • 330 B
TypeScript
import type { ReactElement } from 'react';
export interface ViewItem<T = any> {
id: string;
reactElement: ReactElement;
ionPageElement?: HTMLElement | undefined;
ionRoute?: boolean;
mount: boolean;
routeData?: T;
transitionHtml?: string;
outletId: string;
disableIonPageManagement?: boolean;
}