Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Stuff90/37f9639e2d9d95d3f262359767021c0a to your computer and use it in GitHub Desktop.
Save Stuff90/37f9639e2d9d95d3f262359767021c0a to your computer and use it in GitHub Desktop.
// Extracted from CDK Tabe basic example https://goo.gl/T4eHRE
export class ExampleDataSource extends DataSource<any> {
constructor(private _exampleDatabase: ExampleDatabase) {
super();
}
connect(): Observable<UserData[]> {
return this._exampleDatabase.dataChange;
}
disconnect() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment