type OptLazy<T,A>
A potentially lazy value of type T.
Definition
export type OptLazy<T, A extends any[] = []> = T | ((...args: A) => T);
type OptLazy<T,A>A potentially lazy value of type T.
export type OptLazy<T, A extends any[] = []> = T | ((...args: A) => T);