Hello. I’ve got an interface (databsase.rei) and am trying to apply that interface to a module (pouchDb.re) but I’m getting an error on line 1 of the implementation file: “The error is “Unbound module type DatabaseInterface”.”
Here’s the line that is failing: module PouchDb: DatabaseInterface = {
Any ideas?
My interface is here: https://github.com/bsommardahl/cafe-frontend/blob/master/src/database.rei
My implementation is here: https://github.com/bsommardahl/cafe-frontend/blob/master/src/pouchdb.re