/** * @module net/packets/outgoing */ import { Writer } from '../../writer'; import { Reader } from '../../reader'; import { PacketType } from '../../packet-type'; import { Packet } from '../../packet'; /** * Sent to edit an account id list. */ export declare class EditAccountListPacket implements Packet { type: PacketType; propagate: boolean; /** * The id of the account id list being edited. */ accountListId: number; /** * Whether the edit is to add to the list or remove from it. */ add: boolean; /** * The object id of the player to add to the list. */ objectId: number; write(writer: Writer): void; read(reader: Reader): void; } //# sourceMappingURL=edit-account-list-packet.d.ts.map