Skip to content

Instantly share code, notes, and snippets.

@alxhub
Last active September 24, 2020 00:40
Show Gist options
  • Save alxhub/f463b939188459b5effb5fb693f0941b to your computer and use it in GitHub Desktop.
Save alxhub/f463b939188459b5effb5fb693f0941b to your computer and use it in GitHub Desktop.
Medium Embed testing
export abstract class AbstractControl {
readonly value: any;
readonly valueChanges: Observable<any>;
readonly statusChanges: Observable<any>;
}
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