Skip to content

Commit

Permalink
fix(interfaces): add settings property to route config interface
Browse files Browse the repository at this point in the history
fixes #208
  • Loading branch information
bryanrsmith committed Sep 18, 2015
1 parent 565ea40 commit 3e8355f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/interfaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,12 @@ interface RouteConfig {
* The document title to set when this route is active.
*/
title?: string;

/**
* Arbitrary data to attach to the route. This can be used to attached custom data needed by components
* like pipeline steps and activated modules.
*/
settings?: any;

[x: string]: any;
}

0 comments on commit 3e8355f

Please sign in to comment.