Skip to content

Commit

Permalink
build: fix incorrect imports
Browse files Browse the repository at this point in the history
  • Loading branch information
weyoss committed Nov 20, 2023
1 parent 5140727 commit ba82774
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* in the root directory of this source tree.
*/

import { ICallback } from '../redis-smq-common';
import { ICallback } from 'redis-smq-common';
import { _destroyCommonRedisClient } from './src/common/_get-common-redis-client';

export * from './types/index';
Expand Down
2 changes: 1 addition & 1 deletion types/consumer/message-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { Message } from '../../src/lib/message/message';
import { ICallback } from '../../../redis-smq-common';
import { ICallback } from 'redis-smq-common';
import { IQueueParams } from '../queue';
import { redisKeys } from '../../src/common/redis-keys/redis-keys';

Expand Down
2 changes: 1 addition & 1 deletion types/exchange/exchange.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import { IQueueParams } from '../queue';
import { ICallback } from '../../../redis-smq-common';
import { ICallback } from 'redis-smq-common';

export type TTopicParams = {
topic: string;
Expand Down
2 changes: 1 addition & 1 deletion types/queue-messages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* in the root directory of this source tree.
*/

import { ICallback } from '../../../redis-smq-common';
import { ICallback } from 'redis-smq-common';
import { Message } from '../../src/lib/message/message';
import { IQueueParams } from '../queue';

Expand Down

0 comments on commit ba82774

Please sign in to comment.