@samatawy/checks
    Preparing search index...

    Interface ResultCodeDefinition

    Defines optional messages for a validation code.

    Each level can be either a single message string or a localized translation map.

    interface ResultCodeDefinition {
        hint?: string | TranslationMap;
        warn?: string | TranslationMap;
        err?: string | TranslationMap;
    }
    Index

    Properties

    Properties

    hint?: string | TranslationMap

    Informational guidance that does not indicate a failure.

    warn?: string | TranslationMap

    A non-fatal warning message.

    err?: string | TranslationMap

    An error message that marks the result as invalid.