Changed Packet attributes types

This commit is contained in:
J Gabriel Gouveia
2018-06-14 00:57:36 -03:00
parent addba3f329
commit 6a37987f41
+3 -3
View File
@@ -73,9 +73,9 @@ export class Authorizer {
export interface Packet {
topic: string;
payload: any;
messageId: any;
qos: any;
retain: any;
messageId: string;
qos: number;
retain: boolean;
}
export interface Message {