Hi everyone,
I came across the getAll() type declaration (getAll: <T = CookieValue[]>) in the Nuxt module /cookie-universal-nuxt/types/index.d.ts#L32 and realized it may not have been properly typed π€
It doesn't actually return an array but an object, like in /cookie-universal/types/index.d.ts#L23.
I tested it, to double check.
Would a small PR to replace it be a good idea ?
getAll: <T = CookieValue[]> // β
getAll: <T = object> // β
Cheers πͺ