Interface representing Gun data operation event data GunDataEventData

interface GunDataEventData {
    data?: any;
    error?: string;
    path: string;
    success: boolean;
    timestamp: number;
}

Properties

data?: any

The data involved in the operation

error?: string

Error message if operation failed

path: string

The path where the operation occurred

success: boolean

Whether the operation was successful

timestamp: number

Timestamp of the operation