/** * @module net/packets/incoming */ import { Writer } from '../../writer'; import { Reader } from '../../reader'; import { PacketType } from '../../packet-type'; import { Packet } from '../../packet'; /** * Received to provide lists of accounts ids which are * those of players who have been locked, ignored, etc. */ export declare class AccountListPacket implements Packet { type: PacketType; propagate: boolean; /** * The id of the account id list. */ accountListId: number; /** * The account ids included in the list. */ accountIds: string[]; /** * > Unknown. */ lockAction: number; constructor(); read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=account-list-packet.d.ts.map