UNPKG

167 BTypeScriptView Raw
1import { RuntypeBase } from '../runtype';
2/**
3 * Construct a possibly-recursive Runtype.
4 */
5export declare function Lazy<A extends RuntypeBase>(delayed: () => A): A;