Skip to content

Instantly share code, notes, and snippets.

@jdthorpe
Created July 3, 2019 05:52
Show Gist options
  • Save jdthorpe/578ed55828e48b37c5d0b40a1002023f to your computer and use it in GitHub Desktop.
Save jdthorpe/578ed55828e48b37c5d0b40a1002023f to your computer and use it in GitHub Desktop.
Rational for adding collection wide typings

Having to add typings to each require is almost as useless as not having typings at all. For example,

import DB from "nedb"
const myCollection = new nedb(DB)
// insert one kind of document
myCollection.insert<{name:string}>({name:"nedb"})
// expect to find a different kind of document
myCollection.findOne<{name:number}>({},(err,doc) => console.log(typeof doc.name))

This is especially true when the a collection is exported or passed to another module.

import DB from "nedb"
const myCollection = new nedb(DB)
// insert one kind of document
myCollection.insert({name:"nedb"})
// now expecting to find a different kind of document raises an error
myCollection.findOne<{name:number}>({},(err,doc) => console.log(typeof doc.name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment