UNPKG

pterowrap

Version:

A node.js wrapper for Pterodactyl API

12 lines (11 loc) 508 B
import ApplicationInstance from "../../instance/ApplicationInstance"; import * as Types from "../../utils/Types"; import Nest from "../../structures/application/Nest"; import Egg from "../../structures/application/Egg"; export default class EggManager { private client; private _parentNest; constructor(client: ApplicationInstance, _parentNest: Nest); list(options?: Types.requestParameters): Promise<Egg[]>; get(id: number, options?: Types.requestParameters): Promise<Egg>; }