ack-angular
Version:
Extra special directives, components, providers and pipes to aide in tackling everyday interface development needs in Angular2
19 lines (18 loc) • 841 B
TypeScript
import { Subscription } from "rxjs";
import { EventEmitter } from "@angular/core";
import { htmlSize, HtmlSizeService } from "./HtmlSizeWatcher";
import * as i0 from "@angular/core";
export declare class HtmlWidthModel {
HtmlSizeService: HtmlSizeService;
sub: Subscription;
htmlWidthModel?: number | null;
htmlWidthModelChange: EventEmitter<number | null>;
constructor(HtmlSizeService: HtmlSizeService);
ngAfterViewInit(): void;
ngOnDestroy(): void;
changed(): void;
hasChanged(): boolean;
setModel(htmlSize: htmlSize): void;
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlWidthModel, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<HtmlWidthModel, "[htmlWidthModel]", never, { "htmlWidthModel": "htmlWidthModel"; }, { "htmlWidthModelChange": "htmlWidthModelChange"; }, never, never, false>;
}