import { PipelineDomainAction, PipelineDomainDomainObjectIdentifier, PipelineDomainNotification } from ".."; export interface ISignalRService{ onNotification(callback: (notification: PipelineDomainNotification) => void): Promise; getDomainObjectIdIdentifiers(): PipelineDomainDomainObjectIdentifier[]; getQueueItems(): any[]; }