AboutSupportDeveloper GuideVersion 22.3.18

An abstract validation entry.

interface ValidationEntry<T> {
    arg?: T;
    invalidMessage?: string;
}

Type Parameters

  • T = any

Properties

arg?: T

Validation argument to test against.

invalidMessage?: string

Message displayed to the user when input is invalid.