@alauda/ui
Version:
Angular UI components by Alauda Frontend Team.
19 lines (18 loc) • 993 B
TypeScript
import { ElementRef, OnInit } from '@angular/core';
import { Bem } from '../../internal/utils';
import { DialogRef } from '../dialog-ref';
import { DialogService } from '../dialog.service';
import * as i0 from "@angular/core";
export declare class DialogHeaderComponent implements OnInit {
dialogRef: DialogRef<any>;
private readonly elementRef;
private readonly dialogService;
bem: Bem;
divider: boolean;
closeable: boolean;
result: any;
constructor(dialogRef: DialogRef<any>, elementRef: ElementRef, dialogService: DialogService);
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DialogHeaderComponent, [{ optional: true; }, null, null]>;
static ɵcmp: i0.ɵɵComponentDeclaration<DialogHeaderComponent, "aui-dialog-header", never, { "divider": { "alias": "divider"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "result": { "alias": "result"; "required": false; }; }, {}, never, ["*"], true, never>;
}