mithril-materialized
    Preparing search index...

    Interface Validatable<T>

    Represents a component that can be validated

    interface Validatable<T = any> {
        isValid: boolean;
        value: T;
        validate(): ValidationResult;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Methods

    Properties

    isValid: boolean
    value: T

    Methods