Skip to content

Commit 03f3020

Browse files
committed
wip
1 parent e151eb8 commit 03f3020

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ module.exports = {
3434
'import/first': 'error',
3535
'import/no-duplicates': 'error',
3636
'simple-import-sort/imports': 'error',
37+
'simple-import-sort/exports': 'error',
3738
'@typescript-eslint/ban-types': [
3839
'error',
3940
{

src/whatsapp/models/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
export * from './auth.model';
12
export * from './chat.model';
3+
export * from './chatwoot.model';
24
export * from './contact.model';
35
export * from './message.model';
4-
export * from './auth.model';
5-
export * from './webhook.model';
6-
export * from './chatwoot.model';
76
export * from './settings.model';
7+
export * from './webhook.model';

src/whatsapp/routers/index.router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ router
4949
.use('/chatwoot', new ChatwootRouter(...guards).router)
5050
.use('/settings', new SettingsRouter(...guards).router);
5151

52-
export { router, HttpStatus };
52+
export { HttpStatus, router };

0 commit comments

Comments
 (0)