Skip to content

Commit

Permalink
fix: Typos fix
Browse files Browse the repository at this point in the history
  • Loading branch information
icleitoncosta committed Aug 31, 2023
1 parent 53aa925 commit 3114b31
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Expand Up @@ -41,6 +41,7 @@ export * as profile from './profile';
export * as status from './status';
export * as util from './util';
export * as whatsapp from './whatsapp';
export * as order from './order';

export {
emit,
Expand Down
1 change: 1 addition & 0 deletions src/whatsapp/collections/OrderCollection.ts
Expand Up @@ -26,6 +26,7 @@ export declare class OrderCollection extends Collection<OrderModel> {
static staleCollection?: any;
width?: any;
height?: any;
addOrder(): Promise<OrderModel>;
findOrder(e?: any, t?: any, a?: any): any;
}
exportModule(
Expand Down
4 changes: 1 addition & 3 deletions src/whatsapp/functions/products.ts
Expand Up @@ -71,10 +71,8 @@ export declare function queryProduct(
imageWidth?: number,
imageHeight?: number,
i?: any,
s?: boolean,
l?: any
s?: boolean
): any;

exportModule(
exports,
{
Expand Down
3 changes: 3 additions & 0 deletions src/whatsapp/models/OrderItemModel.ts
Expand Up @@ -27,9 +27,12 @@ interface Props {
id?: any;
price?: any;
currency?: any;
name?: string;
quantity?: any;
thumbnailId?: any;
thumbnailUrl?: any;
isCustomItem?: boolean;
isQuantitySet?: boolean;
}

interface Session {
Expand Down

0 comments on commit 3114b31

Please sign in to comment.