Interface: CoreRouterState

Oracle® JavaScript Extension Toolkit (JET)
8.0.0

F18189-01

QuickNav

Fields


CoreRouterState

Version:
  • 8.0.0
Module:
  • ojcorerouter

Module usage

See JET Module Loading for an overview of module usage within JET.

Typescript Import Format
//To use this interface, import as below.
import CoreRouter= require("ojs/ojcorerouter");

//To access this interface in your code,
let myVariable: CoreRouter.CoreRouterState;

JET In Typescript

A detailed description of working with JET elements and classes in your typescript project can be found at: JET Typescript Usage.

An interface describing the object used by CoreRouter to represent the routes and associated information to which it can navigate.

Fields

(readonly) detail

The detail object for the state, if configured.

(readonly) params

Parameters for the state. Parameters are passed to the state via the CoreRouter.go method.

(readonly) path :string

The path of the state. This will always be the string used to navigate to the current state, even if the original path for the route was defined as a RegExp.