UNPKG

zcatalyst-integ-cliq

Version:

Node.js SDK for integrating Zoho Catalyst with Zoho Cliq

14 lines (13 loc) 348 B
import ButtonObject from './button-object.js'; export default class Slide { newButtonObject() { return new ButtonObject(); } addButton(...button) { if (this.buttons === undefined) { this.buttons = button; return this.buttons.length; } return this.buttons.push(...button); } }