does a generic type for return cache fonction exist ? did i miss it ? right now, i do it on my own but i feel this should be import from solid ```ts type CachedFunctionResolved<T extends (...args: any[]) => Promise<unknown>> = Accessor<Awaited<ReturnType<T>>>; const C = (props:{ data: CachedFunctionResolved<typeof getData> }) => ... ```