Last active
May 31, 2018 21:17
-
-
Save Jahans3/50cf9e064a00f4749b514dc102f9a338 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Car = Interface('Car')({ | |
| seats: type('number'), | |
| passengers: type('array', [type('object', Passenger)]), | |
| beep: type('function') | |
| },{ | |
| error: true, | |
| strict: true | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment