From ec7f772c2b8393af26b22c999f5bf2601fa9bc00 Mon Sep 17 00:00:00 2001 From: Morris Allison III Date: Mon, 14 Sep 2015 12:50:31 -0400 Subject: [PATCH] Add the "replace" option to "router.navigate()" See Backbone documentation for the option here: http://backbonejs.org/#Router-navigate --- backbone/backbone.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backbone/backbone.d.ts b/backbone/backbone.d.ts index 701cc6d9d..f7c5945ad 100644 --- a/backbone/backbone.d.ts +++ b/backbone/backbone.d.ts @@ -19,6 +19,7 @@ declare module Backbone { interface NavigateOptions { trigger?: boolean; + replace?: boolean; } interface RouterOptions {