Skip to content

Commit

Permalink
fix(typings): moduleId: string|null
Browse files Browse the repository at this point in the history
  • Loading branch information
fkleuver committed Mar 15, 2018
1 parent c1775e5 commit a7cdb68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/router-configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class RouterConfiguration {
pipelineSteps: Array<{name: string, step: Function|PipelineStep}> = [];
title: string;
unknownRouteConfig: string|RouteConfig|((instruction: NavigationInstruction) => string|RouteConfig|Promise<string|RouteConfig>);
viewPortDefaults: {[name: string]: {moduleId: string; [key: string]: any}};
viewPortDefaults: {[name: string]: {moduleId: string|null; [key: string]: any}};

/**
* Adds a step to be run during the [[Router]]'s navigation pipeline.
Expand Down

0 comments on commit a7cdb68

Please sign in to comment.