tsbase
    Preparing search index...

    Interface IValidation<T>

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

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

    Type Parameters

    • T

    Implemented by

    Index

    Methods

    Methods