UNPKG
zcatalyst-integ-cliq
Version:
latest (1.1.0)
1.1.0
1.0.0
0.1.1
0.1.0
0.0.1
Node.js SDK for integrating Zoho Catalyst with Zoho Cliq
www.zoho.com/catalyst/
zcatalyst-integ-cliq
/
lib
/
cliq-objects
/
response-objects
/
slide.js
14 lines
(13 loc)
•
348 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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); } }