1.0.84 • Published 1 year ago

@webage/property v1.0.84

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

property

Validation and Documentation decorator

Eample

@Dto()
export class CreateSampleDto {
  @Property({ type: 'string', minLength: 3, maxLength: 100, format: 'email', isArray: false })
  sample: string;

  @Property({ type: 'object', target: () => TargetClass, isArray: false }) 
  object: TargetClass;
}