tgvashworth / typd

Runtime type-checking for JavaScript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create Typd.shape()

ahume opened this issue · comments

Typd(
  ['state', Typd.shape({
      blah: Typd.number,
      fish: Typd.shape({
        name: Typd.string,
        age: Typd.number
      })
  })],
  state => {
    // Something like this
  }
)