mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import { 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;
|
|
}
|