Revert "refactor(core): Change abstract get
to readonly
(#19226)"
This reverts commit 3aa3d5c548
.
This commit is contained in:
@ -23,7 +23,7 @@ export abstract class AbstractControlDirective {
|
||||
* that backs this directive. Most properties fall through to that
|
||||
* instance.
|
||||
*/
|
||||
readonly control: AbstractControl|null;
|
||||
abstract get control(): AbstractControl|null;
|
||||
|
||||
/** The value of the control. */
|
||||
get value(): any { return this.control ? this.control.value : null; }
|
||||
|
Reference in New Issue
Block a user