Skip to content

Instantly share code, notes, and snippets.

@jorroll
Created November 4, 2019 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorroll/946e56f57cc166e3efe3b1d7e45f3552 to your computer and use it in GitHub Desktop.
Save jorroll/946e56f57cc166e3efe3b1d7e45f3552 to your computer and use it in GitHub Desktop.
abstract class AbstractControl<Value = any, Data = any> {
abstract source: ControlSource<PartialControlEvent>;
/** An observable of all events for this AbstractControl */
abstract events: Observable<ControlEvent & { [key: string]: any }>;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment