Skip to content

Commit bb459a8

Browse files
committed
fix: create-wapi-app should have type module
Signed-off-by: sarthakjdev <jsarthak448@gmail.com>
1 parent a608138 commit bb459a8

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

packages/create-wapi-app/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "create-wapi-app",
33
"version": "0.0.1",
44
"description": "a utility to quickly initiate a whatsapp bot",
5+
"type": "module",
56
"author": {
67
"name": "Sarthak",
78
"email": "sarthak@softlancer.co",

packages/wapi.js/src/manager/message/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import { type WapiMessageResponseSchemaType } from "../../client/schema";
1313
*/
1414
export class MessageManager
1515
extends BaseManager
16-
implements MessageManagerInterface {
16+
implements MessageManagerInterface
17+
{
1718
client: Client;
1819
constructor(props: { client: Client }) {
1920
super(props.client);

0 commit comments

Comments
 (0)