UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

9 lines (8 loc) 332 B
import { type ValidatedBox } from '../state/ValidatedBox.js'; /** * A validator function which checks whether an input value is a * {@link ValidatedBox}. Doesn't stop the validator chain. * * @category XML */ export declare function validateValidatedBox(value: unknown): [value: ValidatedBox<unknown, unknown>, stop: boolean];