import { TransactionBaseService } from "@medusajs/medusa"; import { Logger } from "@medusajs/medusa/dist/types/global"; import { EntityManager } from "typeorm"; export interface ShopifyRedisServiceContainerProps { manager: EntityManager; redisClient: any; logger: Logger; } declare class ShopifyRedisService extends TransactionBaseService { options_: any; redis_: any; logger: Logger; constructor(container: ShopifyRedisServiceContainerProps, options: any); withTransaction(transactionManager: any): this; addIgnore(id: any, side: any): Promise; shouldIgnore(id: any, action: any): Promise; addUniqueValue(uniqueVal: any, type: any): Promise; getUniqueValue(uniqueVal: any, type: any): Promise; } export default ShopifyRedisService;