Jak wygenerować JSDoc dla funkcji `pipe`d ES6

Mam funkcję w stylu ES6, która jest definiowana za pomocą kompozycji funkcji z asyncPipe. import { getItemAsync } from 'expo-secure-store'; const asyncPipe = (...fns) => x => fns.reduce(async (y, f) => f(await y), x); const getToken = () => getItemAsync('token'); const...