Update api.md

Moved LB types into types.md.
This commit is contained in:
Rand McKinney 2013-11-01 11:47:03 -07:00
parent 5b98ae1d92
commit c453890353
1 changed files with 0 additions and 14 deletions

View File

@ -1079,17 +1079,3 @@ The latitude point in degrees. Range: -90 to 90.
#### geoPoint.lng
The longitude point in degrees. Range: -180 to 180.
### Loopback Types
Various APIs in Loopback accept type descriptions (eg. [remote methods](#remote-methods), [loopback.createModel()](#model)). The following is a list of supported types.
- `null` - JSON null
- `Boolean` - JSON boolean
- `Number` - JSON number
- `String` - JSON string
- `Object` - JSON object
- `Array` - JSON array
- `Date` - a JavaScript date object
- `Buffer` - a node.js Buffer object
- [GeoPoint](#geopoint) - A Loopback GeoPoint object.