import { Observable } from 'rxjs'; import { CoreServices } from '../services'; export declare type ServerCall = { dataKey?: string; serviceVariable?: string; functionName?: string; isBackgroundTask?: boolean; ignoreFalseError?: boolean; responseSlice?: string; timeoutMilliseconds?: number; loaderID?: string; directCall?: (svc: CoreServices) => Observable; errorMessage: string; data?: any; nextNode?: string; followUpSuccessCalls?: { [id: string]: ServerCall; }; followUpFailCalls?: { [id: string]: ServerCall; }; offlineFallback?: ServerCall; }; //# sourceMappingURL=server-call.d.ts.map