import { addAttributeOptions } from '../model/column/attribute-service'; /** * Only allow date strings */ export function IsDate(target: any, propertyName: string): void { addAttributeOptions(target, propertyName, { validate: { isDate: true, }, }); }