export type Initializer = () => V; export type InitializerOrValue = V | (() => V); export function isInitializer( initialValue: InitializerOrValue, ): initialValue is Initializer { return typeof initialValue === 'function'; }