1.2.0-update.2 • Published 7 years ago
typed-jweixin v1.2.0-update.2
typed-jweixin
TypeScript declaration file for Wexin JSSDK
About
- Based on Weixin JSSDK and it's documentation
- Written using VS Code
Install
- With
npminstalled$ npm install typed-jweixin --save-dev - With
typingsinstalled$ typings install github:Emeryao/typed-jweixin -SG Or find the declaration file and include it to your project
Then start coding with the power of IntelliSense of VS Code
Sample Code
Config
let configData: Wechat.ConfigData = {}; configData.appId = 'appid'; configData.nonceStr = 'nonceStr'; configData.signature = 'signature'; configData.timestamp = 1234567; wx.config(configData);Share Timeline
let shareData: Wechat.ShareData = {}; shareData.imgUrl = 'imgUrl'; shareData.link = 'link'; shareData.title = 'title'; shareData.success = () => { console.log('share successed'); }; shareData.cancel = () => { console.log('cancelled'); } wx.onMenuShareTimeline(shareData);for
Angular
projects created withng newhave a./src/tsconfig.app.jsonwith default content{ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", "types": [] }, "exclude": [] }the line of
"types":[]should be removed to make the declaration file work
Contributors
Thanks for your contributions
Last Update
2018.08.30
