UNPKG

@amelix/phoenix.js

Version:

A feature-rich API wrapper for the critically acclaimed chatting app Phoenix.. or something.

11 lines (10 loc) 344 B
import { Client } from "./Client"; import User from "./User"; /** Represents a user on Phoenix who has deleted their account. */ export default class DeletedUser extends User { /** UNIX timestamp for when this user was deleted. */ deletedAt: number; constructor(client: Client, data: { [k: string]: any; }); }