Files
2020-07-07 12:02:05 -05:00

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;
}