@mobilelivenpm/fds-angular-qa
Version:
This library was generated with [Nx](https://nx.dev).
34 lines (33 loc) • 885 B
TypeScript
import { ElementRef } from '@angular/core';
import { NgControl } from '@angular/forms';
export declare class InputDirective {
/** @docs-private */
ngControl: NgControl;
private hostElement;
protected _uid: string;
controlType: string;
constructor(
/** @docs-private */
ngControl: NgControl, hostElement: ElementRef);
protected _disabled: boolean;
/**
* Implemented as part of FdsFormFieldControl.
* @docs-private
*/
get disabled(): boolean;
set disabled(value: boolean);
/**
* Implemented as part of FdsFormFieldControl.
* @docs-private
*/
get required(): boolean;
set required(value: boolean);
protected _required: boolean;
protected _id: string;
/**
* Implemented as part of FdsFormFieldControl.
* @docs-private
*/
get id(): string;
set id(value: string);
}