import { BufWrapper } from '@minecraft-js/bufwrapper'; import Packet from './Packet'; export default class FriendListPacket extends Packet { static readonly id = 4; constructor(buf?: BufWrapper); write(data: FriendList): void; read(): void; } interface FriendList { consoleAccess: boolean; requestsEnabled: boolean; online: { uuid: string; displayName: string; unknownInt: number; status: string; }[]; offline: { uuid: string; displayName: string; offlineSince: number; }[]; } export {};