Skip to content

Commit 7fe15ae

Browse files
author
Will Johnston
committed
creating dist
1 parent 5935491 commit 7fe15ae

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

framework/testing/framework/platypus.d.ts

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* PlatypusTS v0.10.3 (http://getplatypi.com)
2+
* PlatypusTS v0.10.4 (http://getplatypi.com)
33
* Copyright 2014 Platypi, LLC. All rights reserved.
44
* PlatypusTS is licensed under the GPL-3.0 found at
55
* http://opensource.org/licenses/GPL-3.0
@@ -7296,6 +7296,10 @@ declare module plat {
72967296
*/
72977297
class Viewport extends TemplateControl implements routing.ISupportRouteNavigation {
72987298
protected static _inject: any;
7299+
/**
7300+
* Viewports contain ViewControls.
7301+
*/
7302+
controls: Array<ViewControl>;
72997303
/**
73007304
* Used to grab the current Router instance.
73017305
*/
@@ -7331,27 +7335,23 @@ declare module plat {
73317335
/**
73327336
* The navigator associated with this Viewport.
73337337
*/
7334-
navigator: routing.Navigator;
7338+
protected _navigator: routing.Navigator;
73357339
/**
73367340
* The router associated with this Viewport.
73377341
*/
7338-
router: routing.Router;
7342+
protected _router: routing.Router;
73397343
/**
73407344
* The parent router associated with this Viewport.
73417345
*/
7342-
parentRouter: routing.Router;
7343-
/**
7344-
* Viewports contain ViewControls.
7345-
*/
7346-
controls: Array<ViewControl>;
7346+
protected _parentRouter: routing.Router;
73477347
/**
73487348
* The next injector used to instantiate the next ViewControl during navigation.
73497349
*/
7350-
nextInjector: dependency.Injector<ViewControl>;
7350+
protected _nextInjector: dependency.Injector<ViewControl>;
73517351
/**
73527352
* The next ViewControl to which to navigate.
73537353
*/
7354-
nextView: ViewControl;
7354+
protected _nextView: ViewControl;
73557355
/**
73567356
* Allows the viewport to initialize its navigator with the current
73577357
* router.
@@ -8980,6 +8980,14 @@ declare module plat {
89808980
*/
89818981
class Navigator {
89828982
protected static _inject: any;
8983+
/**
8984+
* A unique id, created during instantiation and found on every Navigator.
8985+
*/
8986+
uid: string;
8987+
/**
8988+
* States whether or not the Navigator is the root Navigator.
8989+
*/
8990+
isRoot: boolean;
89838991
/**
89848992
* The navigator associated with the root router.
89858993
*/
@@ -9015,15 +9023,7 @@ declare module plat {
90159023
/**
90169024
* The router associated with this navigator.
90179025
*/
9018-
router: Router;
9019-
/**
9020-
* A unique id, created during instantiation and found on every Navigator.
9021-
*/
9022-
uid: string;
9023-
/**
9024-
* States whether or not the Navigator is the root Navigator.
9025-
*/
9026-
isRoot: boolean;
9026+
protected _router: Router;
90279027
/**
90289028
* A method to call to stop listening for url changes, only works on the root navigator.
90299029
*/
@@ -9628,22 +9628,6 @@ declare module plat {
96289628
* A Promise That resolves when the router is done navigating.
96299629
*/
96309630
finishNavigating: async.IThenable<void>;
9631-
/**
9632-
* The previous url matched for this router.
9633-
*/
9634-
previousUrl: string;
9635-
/**
9636-
* The previous query matched for this router.
9637-
*/
9638-
previousQuery: string;
9639-
/**
9640-
* The previous route segment matched for this router.
9641-
*/
9642-
previousSegment: string;
9643-
/**
9644-
* The previous registered route pattern matched for this router.
9645-
*/
9646-
previousPattern: string;
96479631
/**
96489632
* The route information for the active route state.
96499633
*/
@@ -9664,6 +9648,22 @@ declare module plat {
96649648
* Whether or not this router is the root router (has no parent).
96659649
*/
96669650
isRoot: boolean;
9651+
/**
9652+
* The previous url matched for this router.
9653+
*/
9654+
protected _previousUrl: string;
9655+
/**
9656+
* The previous query matched for this router.
9657+
*/
9658+
protected _previousQuery: string;
9659+
/**
9660+
* The previous route segment matched for this router.
9661+
*/
9662+
protected _previousSegment: string;
9663+
/**
9664+
* The previous registered route pattern matched for this router.
9665+
*/
9666+
protected _previousPattern: string;
96679667
/**
96689668
* Used for registering, generating, and recognizing routes.
96699669
*/

0 commit comments

Comments
 (0)