docs(icon): hide methods

hide methods that do not need docs
This commit is contained in:
mhartington
2016-02-01 14:41:10 -05:00
parent 1e2308ff79
commit 8fe145f065

View File

@@ -53,6 +53,10 @@ export class Icon {
private _ios: string = '';
private _md: string = '';
private _css: string = '';
/**
* @private
*/
mode: string;
constructor(
@@ -79,6 +83,9 @@ export class Icon {
}
}
/**
* @private
*/
@Input()
get name(): string {
return this._name;
@@ -94,6 +101,9 @@ export class Icon {
this.update();
}
/**
* @private
*/
@Input()
get ios(): string {
return this._ios;
@@ -104,6 +114,9 @@ export class Icon {
this.update();
}
/**
* @private
*/
@Input()
get md(): string {
return this._md;
@@ -114,6 +127,9 @@ export class Icon {
this.update();
}
/**
* @private
*/
@Input()
get isActive(): boolean {
return (this._isActive === undefined || this._isActive === true || this._isActive === 'true');