UNPKG

runtyp

Version:

Lightning-fast, zero-dependency runtime validation for TS/JS. 25x faster than zod with a cleaner API.

7 lines (6 loc) 184 B
import { Pred } from '..'; /** * A predicate which checks if a value is a valid UUID v4. */ export declare function uuidv4(): Pred<string>; export declare const uuid: typeof uuidv4;