UNPKG

pterowrap

Version:

A node.js wrapper for Pterodactyl API

9 lines (8 loc) 308 B
import ClientInstance from "../../../instance/ClientInstance"; export default class TwoFactorManager { private client; constructor(client: ClientInstance); retrieveQrCode(): Promise<unknown>; enable(code: string): Promise<string[]>; disable(password: string): Promise<unknown>; }