@amelix/phoenix.js
Version:
A feature-rich API wrapper for the critically acclaimed chatting app Phoenix.. or something.
15 lines (14 loc) • 447 B
TypeScript
import { Client } from "./Client";
/** The foundation of all Phoenix structures. */
export default class Base {
/** The client that fetched this structure. */
client: Client;
/** Unique ID for this Phoenix structure. */
id: string;
/** The UNIX timestamp for when this structure was created. */
createdAt: number;
constructor(client: Client, data: {
[k: string]: any;
});
clone(): this;
}