Files
ionic-framework/packages/react/src/models/RouterOptions.ts

11 lines
288 B
TypeScript

export interface RouterOptions {
/**
* Optional - Used for routing frameworks that need an 'as' parameter for routing.
*/
as?: string;
/**
* Optional - If the component should be unmounted after it is transitioned away from. Defaults to false.
*/
unmount?: boolean;
}