Created
September 2, 2022 08:30
-
-
Save dmitry-stepanenko/2b154e0a859f4ea99698115486050d8e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ControlValueAccessor { | |
writeValue(obj: any): void | |
registerOnChange(fn: any): void | |
registerOnTouched(fn: any): void | |
setDisabledState(isDisabled: boolean)?: void | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment