/** * @module net/packets/incoming */ import { Writer } from '../../writer'; import { Reader } from '../../reader'; import { PacketType } from '../../packet-type'; import { Packet } from '../../packet'; /** * Received when a global notification is sent out to all players. */ export declare class GlobalNotificationPacket implements Packet { type: PacketType; propagate: boolean; /** * The type of notification received. */ notificationType: number; /** * The notification message. */ text: string; read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=global-notification-packet.d.ts.map