mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
11 lines
288 B
TypeScript
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;
|
|
}
|