Last active
April 16, 2018 20:27
-
-
Save Stuff90/ac5cc470c458fa7e814655331f69e499 to your computer and use it in GitHub Desktop.
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
// 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