UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

5 lines (4 loc) 112 B
export interface IValueComparator<T> { areEqual(a: T, b: T): boolean; isValid(value: T): boolean; }