2
0
mirror of https://github.com/therootcompany/request.js synced 2025-03-14 12:20:38 +00:00
request.js/bin/localize-types

15 lines
250 B
Plaintext
Raw Normal View History

#!/bin/sh
my_typedefs="$(
2022-09-01 00:59:05 -06:00
grep typedef ./index.js | cut -d ' ' -f5
)"
2022-09-01 00:59:05 -06:00
rm -f ./types.js
{
echo '/**'
for my_type in $my_typedefs; do
2022-09-01 00:59:05 -06:00
echo " * @typedef {import('./').${my_type}} ${my_type}"
done
echo ' */'
2022-09-01 00:59:05 -06:00
} >> ./types.js