This commit is contained in:
Alan Mosko 2023-07-26 10:30:56 -03:00
parent e151eb85f0
commit 03f3020e9f
3 changed files with 5 additions and 4 deletions

View File

@ -34,6 +34,7 @@ module.exports = {
'import/first': 'error',
'import/no-duplicates': 'error',
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'@typescript-eslint/ban-types': [
'error',
{

View File

@ -1,7 +1,7 @@
export * from './auth.model';
export * from './chat.model';
export * from './chatwoot.model';
export * from './contact.model';
export * from './message.model';
export * from './auth.model';
export * from './webhook.model';
export * from './chatwoot.model';
export * from './settings.model';
export * from './webhook.model';

View File

@ -49,4 +49,4 @@ router
.use('/chatwoot', new ChatwootRouter(...guards).router)
.use('/settings', new SettingsRouter(...guards).router);
export { router, HttpStatus };
export { HttpStatus, router };