/wx.d.ts

definitions for wechat app's api

Primary LanguageJavaScript

wx.d.ts

typescript definition file for weixin app

下载wx.d.ts文件(右键另存为)

build

npm run build

simple usage

copy wx.d.ts to your typing directory.

update APIs every day

# first time
git clone https://github.com/zxj5470/wx.d.ts
cd wx.d.ts
$ cat everyday.sh
#!/bin/bash
npm run build
git add wx.d.ts
git commit -m "`date`"
git push
chmod u+x everyday.sh
$ crontab -e
# run at 6:00 AM EDT(UTC-4) (18:00 UTC+8) every day.
0 6 * * * ~/wx.d.ts/everyday.sh