tsc-sdk
v1.0.1
Published
this is a client for tsc!
Readme
tsc-sdk
在前端页面中调用用户创建的函数接口
Install
npm install --save tsc-sdk
Usage: post
const owcli = require('tsc-sdk');
const data = {name: 'Jane'}
const contentType = 'application/json'
owcli.post('/api/v1/test', JSON.stringify(data), 'appidString','tokenString',contentType).then(res => {console.log(res)})
