UNPKG

zcatalyst-integ-cliq

Version:

Node.js SDK for integrating Zoho Catalyst with Zoho Cliq

14 lines (13 loc) 336 B
import ContextParam from './context-param.js'; export default class Context { newParam() { return new ContextParam(); } addParams(...param) { if (this.params === undefined) { this.params = param; return this.params.length; } return this.params.push(...param); } }