import { IValidationResult } from '../../../interfaces'; import { IFieldContext, IRelationContext } from '../../interfaces'; import { Rule } from '../../rules'; export class RelationRule implements Rule { public name: string; public description: string; public validate(context: IFieldContext): IValidationResult[] { throw new Error('Method not implemented.'); } constructor(name: string) { this.name = name; } }