UNPKG

succulent

Version:

Powerful and easy runtime type checking

8 lines (7 loc) 262 B
import { SchemaBase } from "../schema.js"; /** * @param x The value to check * @param schema The schema to check against * @returns {bool} whether the provided value matches the schema */ export declare function is<T>(x: unknown, $T: SchemaBase<T>): x is T;