import type ILogData from './ILogData'; /** * The error parameter is the only required parameter and basically will be just converted to string and * logged to Debug stream (RealibilityLogs in SLAPI). * It will also be uploaded to the server immediately and not wait for next batch log upload. * The parameter "resultCode" is there to be used from Qos. * * @internal */ interface ILogErrorData extends ILogData { /** * The error associated with this log data. */ error: Error; /** * */ resultCode?: string; } export default ILogErrorData; //# sourceMappingURL=ILogErrorData.d.ts.map