Prevents this property from being marshaled to json by the built in toJson
method that is attached to
@Model
decorated classes.
@Model({...}) export class SomeModel { @Db({ private: true }) firstName: string = ''; }
Explanation: the firstName
property will be mapped to the firstName
property of a database document, but
it will not be included in the output of someModel.toJson()
.
Generated using TypeDoc
Defines the valid options for
@
Db.