Interface to interact with dsgstng.com api
const Api = require('dsgstng-api')
const dsgstngApi = new Api()
dsgstngApi.calendar.schedule.get()
.then(calendar => {
})
.catch(err => {
})
import Api from 'dsgstng-api/web'
const dsgstngApi = new Api()
dsgstngApi.calendar.schedule.get()
.then(calendar => {
})
.catch(err => {
})
// Clean frontend example
<script src="/node_modules/dsgstng-api/dist/DsgstngApi.min.js"></script>
<script>
const dsgstngApi = new DsgstngApi()
dsgstngApi.calendar.schedule.get()
.then(calendar => {
})
.catch(err => {
})
</script>
Full doc soon
For details contact him