/** * ISyncService file. */ import { IDynamoDbEvent } from "@kushki/core"; import { Observable } from "rxjs"; import { ProcessorFetch } from "types/remote/processor_fetch"; /** * Sync Service. */ export interface ISyncService { /** * Sync Processors with merchant usrv */ syncProcessors(event: IDynamoDbEvent): Observable; }