From feec83a5d59b32320dbdc5a7c743a76df91a78f6 Mon Sep 17 00:00:00 2001 From: davetayls Date: Sun, 1 Feb 2015 20:22:50 +0000 Subject: [PATCH] added triggerMethod to Marionette.Controller as described https://github.com/marionettejs/backbone.marionette/blob/master/src/controller.js#L33 --- marionette/marionette.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/marionette/marionette.d.ts b/marionette/marionette.d.ts index 40c0f6775..39faea563 100644 --- a/marionette/marionette.d.ts +++ b/marionette/marionette.d.ts @@ -231,6 +231,8 @@ declare module Marionette { * @param optionName the name of the option to retrieve. */ getOption(optionName: string): any; + + triggerMethod(name: string, ...args: any[]): any; } interface RegionConstructionOptions {