src/modules/route-search/components/route-search-entry.intf.ts
Route Search Entry that will be displayed by the route search component
Properties |
|
label |
label:
|
Type : string
|
Text to be displayed |
targetState |
targetState:
|
Type : string
|
Name of the Router state that will be navigated to |
targetStateParams |
targetStateParams:
|
Type : literal type
|
Optional |
Params object to be passed to the Router state defined as targetState. |
export interface StarkRouteSearchEntry {
/**
* Text to be displayed
*/
label: string;
/**
* Name of the Router state that will be navigated to
*/
targetState: string;
/**
* Params object to be passed to the Router state defined as targetState.
*/
targetStateParams?: { [param: string]: any };
}