UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

25 lines (24 loc) 1.02 kB
/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core'; import { NgControl } from '@angular/forms'; import { BooleanInput, NzSizeLDSType } from 'ng-zorro-antd/core/types'; import { Subject } from 'rxjs'; export declare class NzInputDirective implements OnChanges, OnInit, OnDestroy { ngControl: NgControl; static ngAcceptInputType_disabled: BooleanInput; static ngAcceptInputType_nzBorderless: BooleanInput; nzBorderless: boolean; nzSize: NzSizeLDSType; get disabled(): boolean; set disabled(value: boolean); _disabled: boolean; disabled$: Subject<boolean>; private destroy$; constructor(ngControl: NgControl, renderer: Renderer2, elementRef: ElementRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; }