UNPKG

@aurios/jason

Version:

A simple, lightweight, and embeddable JSON document database built on Bun.

7 lines (6 loc) 160 B
/** * Represents a validation function type. * * @template T The type of data being validated. */ export type ValidationFunction<T> = (item: T) => boolean;