Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Last active May 9, 2020 11:50
Show Gist options
  • Save haldarmahesh/81c20f7a755032ec16ce47859a95bf04 to your computer and use it in GitHub Desktop.
Save haldarmahesh/81c20f7a755032ec16ce47859a95bf04 to your computer and use it in GitHub Desktop.
interface ContactTable {
name: String;
}
interface ContactModel {
id: String;
name: String;
phoneNumber: String;
profilePicture: String;
createdAt: Date;
updatedAt: Date;
}
class ContactLocalDatabase extends BaseLocalDataBase<ContactTable, ContactModel> {
// overriden function
getFormattedData(): ContactModel[] {
// format and return data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment