UNPKG

214 BTypeScriptView Raw
1import * as mongoose from 'mongoose';
2export type PropOptions<T = any> = Partial<mongoose.SchemaDefinitionProperty<T>> | mongoose.SchemaType;
3export declare function Prop(options?: PropOptions): PropertyDecorator;