From de8e2811035ccbd4307c92b493e3caa2db066946 Mon Sep 17 00:00:00 2001 From: Adhiraj Singh Date: Fri, 1 Oct 2021 13:47:02 +0530 Subject: [PATCH] export WABinay in default export --- src/Defaults/index.ts | 2 -- src/index.ts | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Defaults/index.ts b/src/Defaults/index.ts index b4ae750..ae37702 100644 --- a/src/Defaults/index.ts +++ b/src/Defaults/index.ts @@ -4,8 +4,6 @@ import { Browsers } from "../Utils" export const UNAUTHORIZED_CODES = [401, 403, 419] -export const STORIES_JID = 'status@broadcast' - export const DEFAULT_ORIGIN = 'https://web.whatsapp.com' export const DEF_CALLBACK_PREFIX = 'CB:' export const DEF_TAG_PREFIX = 'TAG:' diff --git a/src/index.ts b/src/index.ts index 5f0c293..fe1c58f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,7 @@ export * from './Utils' export * from './Types' //export * from './Store' export * from './Defaults' +export * from './WABinary' export type WASocket = ReturnType