steamapi
Version:
A nice Steam API wrapper.
11 lines (10 loc) • 387 B
TypeScript
import User from './User.js';
export default class UserFriend extends User {
/** Unix Timestamp representing when the friendship started */
friendedTimestamp: number;
/** The type of the relationship (note: seems to always be 'friend') */
relationship: string;
constructor(data: any);
/** Date object when this friendship started */
get friendedAt(): Date;
}