Skip to content

Commit 9371f94

Browse files
committed
chore: some cleanup
1 parent 18aac69 commit 9371f94

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

packages/messages/lib/classes/WhatsApp/WhatsAppAudio.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { AbstractAudioMessage } from '../AbstractAudioMessage.js';
2-
import { WhatsAppAudioParams, WhatsAppContext } from '../../types/index.js';
3-
import { Channels } from '../../enums/index.js';
1+
import { AbstractAudioMessage } from '../AbstractAudioMessage';
2+
import { WhatsAppAudioParams, WhatsAppContext } from '../../types/';
3+
import { Channels } from '../../enums/';
44

55
/**
66
* Represents an audio message for WhatsApp.

packages/messages/lib/classes/WhatsApp/WhatsAppCustom.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { AbstractMessage } from '../AbstractMessage.js';
1+
import { AbstractMessage } from '../AbstractMessage';
22
import {
33
WhatsAppCustomType,
44
WhatsAppCustomParams,
55
WhatsAppContext,
6-
} from '../../types/index.js';
7-
import { Channels, MessageTypes } from '../../enums/index.js';
6+
} from '../../types/';
7+
import { Channels, MessageTypes } from '../../enums/';
88

99
/**
1010
* Represents a custom message for WhatsApp.

packages/messages/lib/classes/WhatsApp/WhatsAppFile.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Channels } from '../../enums/index.js';
2-
import { AbstractFileMessage } from '../AbstractFileMessage.js';
3-
import { WhatsAppFileParams, WhatsAppContext } from '../../types/index.js';
1+
import { Channels } from '../../enums/';
2+
import { AbstractFileMessage } from '../AbstractFileMessage';
3+
import { WhatsAppFileParams, WhatsAppContext } from '../../types/';
44

55
/**
66
* Represents a file message for WhatsApp.

packages/messages/lib/classes/WhatsApp/WhatsAppImage.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { AbstractImageMessage } from '../AbstractImageMessage.js';
2-
import { WhatsAppImageParams, WhatsAppContext } from '../../types/index.js';
3-
import { Channels } from '../../enums/index.js';
1+
import { AbstractImageMessage } from '../AbstractImageMessage';
2+
import { WhatsAppImageParams, WhatsAppContext } from '../../types/';
3+
import { Channels } from '../../enums/';
44

55
/**
66
* Represents an image message for WhatsApp.

packages/messages/lib/classes/WhatsApp/WhatsAppReaction.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { AbstractMessage } from '../AbstractMessage.js';
1+
import { AbstractMessage } from '../AbstractMessage';
22
import {
33
WhatsAppReactionParams,
44
WhatsAppReactionType,
55
WhatsAppContext,
6-
} from '../../types/index.js';
7-
import { Channels, MessageTypes } from '../../enums/index.js';
6+
} from '../../types/';
7+
import { Channels, MessageTypes } from '../../enums/';
88

99
/**
1010
* Represents a reaction message for WhatsApp.

packages/messages/lib/classes/WhatsApp/WhatsAppSticker.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { AbstractMessage } from '../AbstractMessage.js';
1+
import { AbstractMessage } from '../AbstractMessage';
22
import {
33
WhatsAppStickerParams,
44
WhatsAppStickerIdType,
55
WhatsAppStickerUrlType,
66
WhatsAppContext,
7-
} from '../../types/index.js';
8-
import { Channels, MessageTypes } from '../../enums/index.js';
7+
} from '../../types/';
8+
import { Channels, MessageTypes } from '../../enums/';
99

1010
/**
1111
* Represents a sticker message for WhatsApp.

packages/messages/lib/classes/WhatsApp/WhatsAppVideo.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { AbstractVideoMessage } from '../AbstractVideoMessage.js';
2-
import { WhatsAppVideoParams, WhatsAppContext } from '../../types/index.js';
3-
import { Channels } from '../../enums/index.js';
1+
import { AbstractVideoMessage } from '../AbstractVideoMessage';
2+
import { WhatsAppVideoParams, WhatsAppContext } from '../../types/';
3+
import { Channels } from '../../enums/';
44

55
/**
66
* Represents a video message for WhatsApp.

0 commit comments

Comments
 (0)