import { Contains, IsInt, MinLength, MaxLength } from '../../src/decorator/decorators'; import { BaseContent } from './BaseContent'; export class Post extends BaseContent { @MinLength(10) @MaxLength(20) title: string; @Contains('hello') text: string; @IsInt() rating: number; }