docs(security): security api doc update and fix stability marker for Type

This commit is contained in:
Naomi Black
2016-06-28 11:01:35 -07:00
parent ae4fa56ee9
commit 9340e1b065
7 changed files with 42 additions and 10 deletions

View File

@ -59,11 +59,6 @@ var _global: BrowserNodeGlobal = globalScope;
export {_global as global};
/**
* @stable
*/
export var Type = Function;
/**
* Runtime representation a type that a Component or other object is instances of.
*
@ -72,6 +67,9 @@ export var Type = Function;
*
* @stable
*/
export var Type = Function;
export interface Type extends Function {}
/**