Last active
September 24, 2020 00:40
-
-
Save alxhub/f463b939188459b5effb5fb693f0941b to your computer and use it in GitHub Desktop.
Medium Embed testing
This file contains hidden or 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
export abstract class AbstractControl { | |
readonly value: any; | |
readonly valueChanges: Observable<any>; | |
readonly statusChanges: Observable<any>; | |
} |
This file contains hidden or 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
export class FormControl { | |
readonly value: any; | |
readonly valueChanges: Observable<any>; | |
readonly statusChanges: Observable<any>; | |
// lots and lots of API omitted. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment