Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Stuff90/ac5cc470c458fa7e814655331f69e499 to your computer and use it in GitHub Desktop.
Save Stuff90/ac5cc470c458fa7e814655331f69e499 to your computer and use it in GitHub Desktop.
// Extracted from Angular Material Collections CDK https://goo.gl/GYpMwZ
export abstract class DataSource<T> {
abstract connect(collectionViewer: CollectionViewer): Observable<T[]>;
abstract disconnect(collectionViewer: CollectionViewer): void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment