ack-angular
Version:
Extra special directives, components, providers and pipes to aide in tackling everyday interface development needs in Angular2
23 lines (22 loc) • 1.15 kB
TypeScript
import { EventEmitter, ElementRef } from "@angular/core";
import * as i0 from "@angular/core";
export declare class AckModalLayout {
element: ElementRef;
zIndex: number | string;
close: EventEmitter<AckModalLayout>;
allowClose: boolean | number;
wrapStyle: any;
wrapContentClass: any;
wrapCellStyle: any;
backgroundColor: any;
valign: 'top' | 'center' | 'bottom';
isModelMode: boolean | number;
showModel: boolean | number;
showModelChange: EventEmitter<boolean>;
constructor(element: ElementRef);
clickListenForClose(): void;
ngOnInit(): Promise<void>;
fireClose(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<AckModalLayout, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AckModalLayout, "ack-modal-layout", never, { "zIndex": "zIndex"; "allowClose": "allowClose"; "wrapStyle": "wrapStyle"; "wrapContentClass": "wrapContentClass"; "wrapCellStyle": "wrapCellStyle"; "backgroundColor": "backgroundColor"; "valign": "valign"; "isModelMode": "isModelMode"; "showModel": "showModel"; }, { "close": "close"; "showModelChange": "showModelChange"; }, never, ["*"], false>;
}