UNPKG
gizmovsky
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.1
1.0.0
Unofficial SDK for Gizmo API
github.com/parazeya/gizmovsky
parazeya/gizmovsky
gizmovsky
/
src
/
v3
/
Pluginlibrary.js
11 lines
(9 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
GizmoClient
}
from
'../GizmoClient.js'
;
export
class
Pluginlibrary
{
constructor
(
client
) {
this
.
client
= client; }
getPluginlibrary
(
params = {}
) {
return
this
.
client
.
request
(
'get'
,
'/v3.0/pluginlibrary'
, {}, params); } }