Browse Source

Use a type alias

Steven Silvester 8 years ago
parent
commit
96016c5c06
1 changed files with 1 additions and 11 deletions
  1. 1 11
      src/application/shell.ts

+ 1 - 11
src/application/shell.ts

@@ -538,17 +538,7 @@ namespace ApplicationShell {
    * An arguments object for the changed signals.
    */
   export
-  interface IChangedArgs {
-    /**
-     * The old value for the widget.
-     */
-    oldValue: Widget;
-
-    /**
-     * The new value for the widget.
-     */
-    newValue: Widget;
-  }
+  type IChangedArgs = FocusTracker.IChangedArgs<Widget>;
 }