UNPKG

pterowrap

Version:

A node.js wrapper for Pterodactyl API

24 lines (23 loc) 552 B
import ApplicationInstance from "../../instance/ApplicationInstance"; export default class Egg { private _client; id: number; uuid: string; name: string; nest: number; author: string; description: string; docker_image: string; docker_images: string[]; config: { [key: string]: any; }; startup: string; script: { [key: string]: any; }; created_at: string; updated_at: string; raw: any; constructor(_client: ApplicationInstance, data: any); }