Interface IValidation<T>

Abstracts the responsibilities of ascertaining whether an object passes a given set of validations

interface IValidation<T> {
    Validate(object): Result<null>;
}

Type Parameters

  • T

Implemented by

Methods

Methods

Generated using TypeDoc