Closed scheidtdav closed 1 year ago
I am using this awesome library with Typescript and came across customArray. Its just what I wanted, but it seems that the return type is string[]. Shouldn't it be something similar to {value: string, name: string}[]?
customArray
string[]
{value: string, name: string}[]
I'm having the same problem over here
Closed #30 in favor of #31 which includes a more accurate implementation of types.
Hi everyone! Thanks for contributing. This was fixed on v1.6.11
I am using this awesome library with Typescript and came across
customArray
. Its just what I wanted, but it seems that the return type isstring[]
. Shouldn't it be something similar to{value: string, name: string}[]
?