mirror of
https://github.com/esiur/esiur-js.git
synced 2026-04-04 05:58:22 +00:00
19 lines
326 B
JavaScript
19 lines
326 B
JavaScript
const IIPPacketEvent =
|
|
{
|
|
// Event Manage
|
|
ResourceReassigned : 0,
|
|
ResourceDestroyed: 1,
|
|
ChildAdded: 2,
|
|
ChildRemoved: 3,
|
|
Renamed: 4,
|
|
|
|
// Event Invoke
|
|
PropertyUpdated : 0x10,
|
|
EventOccurred: 0x11,
|
|
|
|
// Attribute
|
|
AttributesUpdated: 0x18
|
|
|
|
};
|
|
|
|
export default IIPPacketEvent; |