From 6a37987f41369c1238e6d3501a4591a9a15ca1b1 Mon Sep 17 00:00:00 2001 From: J Gabriel Gouveia Date: Thu, 14 Jun 2018 00:57:36 -0300 Subject: [PATCH] Changed Packet attributes types --- types/mosca/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/mosca/index.d.ts b/types/mosca/index.d.ts index 4020f7ad7f..5354b57d1f 100644 --- a/types/mosca/index.d.ts +++ b/types/mosca/index.d.ts @@ -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 {