Open stychu opened 1 month ago
Will this ever support full typescript return typings?
import { flatten } from 'flatten-anything' const target = { name: 'Ho-oh', types: { fire: true, flying: true } }as const const ads= flatten(target)
type of ads = any <---- I would expect types of the values to by correctly inferred.
type of ads = any
PRs welcome!
Will this ever support full typescript return typings?
type of ads = any
<---- I would expect types of the values to by correctly inferred.