UNPKG
servertap-js
Version:
latest (0.0.1-dev)
0.0.1
0.0.1-dev
A TypeScript library for working with the ServerTap API
servertap-js
/
src
/
plugins
/
index.ts
8 lines
(7 loc)
•
211 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
Base
}
from
"../base"
;
import
{
Plugin
}
from
"./interfaces"
;
export
class
Plugins
extends
Base
{
getPlugins
():
Promise
<
Plugin
[]> {
return
this
.
request
<
Plugin
[]>(
`/plugins`
); } }