Skip to content

Commit

Permalink
fix(ignore): Fix DeviceMessage.meta type
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Jun 25, 2023
1 parent 57566c7 commit 8833947
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ import type {
Cluster as ZHCluster,
} from 'zigbee-herdsman/dist/zcl/tstype';

import type {
FrameControl as ZHFrameControl,
} from 'zigbee-herdsman/dist/zcl';

import type * as ZHEvents from 'zigbee-herdsman/dist/controller/events';

import type TypeEventBus from 'lib/eventBus';
Expand Down Expand Up @@ -162,7 +166,7 @@ declare global {
groupID: number;
cluster: string | number;
data: KeyValue | Array<string | number>;
meta: {zclTransactionSequenceNumber?: number;};
meta: {zclTransactionSequenceNumber?: number; manufacturerCode?: number; frameControl?: ZHFrameControl;};
};
}

Expand Down

0 comments on commit 8833947

Please sign in to comment.