Como gerar JSDoc para a função `pipe`d ES6

Eu tenho uma função no estilo ES6 que é definida usando a composição de funções com 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...