This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/src/routes/IRouterProps.ts
2017-11-30 13:41:02 +07:00

27 lines
376 B
TypeScript

export interface IRouterProps {
/**
* Enable routing {true} or not {false}
*
* @type {boolean}
* @memberof IRouterProps
*/
enabled: boolean
/**
* Router data for the components in routing
*
* @type {*}
* @memberof IRouterProps
*/
data?: any
/**
* Routing match
*
* @type {*}
* @memberof IRouterProps
*/
match: any
}