UNPKG
hcloud-js
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
A Node.js module for the Hetzner Cloud API
github.com/dennisbruner/hcloud-js
dennisbruner/hcloud-js
hcloud-js
/
lib
/
serverTypes
/
serverTypeList.js
11 lines
(8 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
Pagination
=
require
(
'../pagination'
)
class
ServerTypeList
extends
Pagination
{
constructor
(
endpoint, params, meta, serverTypes
) {
super
(endpoint, params, meta)
this
.
serverTypes
= serverTypes } }
module
.
exports
=
ServerTypeList