UNPKG

pterowrap

Version:

A node.js wrapper for Pterodactyl API

13 lines (12 loc) 360 B
import ClientInstance from "../../../instance/ClientInstance"; export default class APIKey { private _client; identifier: string; description: string; allowed_ips: string[]; last_used_at: string | null; created_at: string; raw: any; constructor(_client: ClientInstance, data: any); delete(): Promise<unknown>; }