Introduction
Migration
Appearance
import { Trim } from "@tsed/mongoose";
See /packages/orm/mongoose/src/types/decorators/trim.ts.
function Trim(): Function;
Tell Mongoose to make the property trimmable.
@Model() export class EventModel { @Trim() name: string; }