UNPKG

servertap-js

Version:

A TypeScript library for working with the ServerTap API

8 lines (7 loc) 211 B
import { Base } from "../base"; import { Plugin } from "./interfaces"; export class Plugins extends Base { getPlugins(): Promise<Plugin[]> { return this.request<Plugin[]>(`/plugins`); } }