lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
9 lines (8 loc) • 338 B
TypeScript
import type { LayoutConstraints } from '../core/LayoutConstraints.js';
/**
* A validator function which checks whether an input value is a
* {@link LayoutConstraints}. Doesn't stop the validator chain.
*
* @category XML
*/
export declare function validateLayoutConstraints(value: unknown): [value: LayoutConstraints, stop: boolean];