refactor(NgClass): cleanup, readability (#11467)

This commit is contained in:
Victor Berchet
2016-09-09 12:03:51 -07:00
committed by Evan Martin
parent 673de004d2
commit f5d44a42c9
4 changed files with 208 additions and 257 deletions

View File

@ -109,9 +109,9 @@ export declare class LowerCasePipe implements PipeTransform {
/** @stable */
export declare class NgClass implements DoCheck {
initialClasses: string;
klass: string;
ngClass: string | string[] | Set<string> | {
[key: string]: any;
[klass: string]: any;
};
constructor(_iterableDiffers: IterableDiffers, _keyValueDiffers: KeyValueDiffers, _ngEl: ElementRef, _renderer: Renderer);
ngDoCheck(): void;