docs(menuTypes): make private from dgeni

This commit is contained in:
mhartington
2016-02-24 14:12:06 -05:00
parent 1cdf10238f
commit 96d35ffbe7

View File

@ -3,11 +3,11 @@ import {Animation} from '../../animations/animation';
/** /**
* @private
* Menu Type * Menu Type
* Base class which is extended by the various types. Each * Base class which is extended by the various types. Each
* type will provide their own animations for open and close * type will provide their own animations for open and close
* and registers itself with Menu. * and registers itself with Menu.
* @private
*/ */
export class MenuType { export class MenuType {
ani: Animation = new Animation(); ani: Animation = new Animation();
@ -56,6 +56,7 @@ export class MenuType {
/** /**
* @private
* Menu Reveal Type * Menu Reveal Type
* The content slides over to reveal the menu underneath. * The content slides over to reveal the menu underneath.
* The menu itself, which is under the content, does not move. * The menu itself, which is under the content, does not move.
@ -79,6 +80,7 @@ MenuController.registerType('reveal', MenuRevealType);
/** /**
* @private
* Menu Push Type * Menu Push Type
* The content slides over to reveal the menu underneath. * The content slides over to reveal the menu underneath.
* The menu itself also slides over to reveal its bad self. * The menu itself also slides over to reveal its bad self.
@ -116,6 +118,7 @@ MenuController.registerType('push', MenuPushType);
/** /**
* @private
* Menu Overlay Type * Menu Overlay Type
* The menu slides over the content. The content * The menu slides over the content. The content
* itself, which is under the menu, does not move. * itself, which is under the menu, does not move.