/** * Interface for error reporters. * There is only a single implementation of this interface - BugsnagReporter. It is provided simply to avoid referencing * the BugsnagReporter class _directly_ (& pulling in all its dependencies) unless the SDK actually wants to use. * (specifically, the rox-serverless SDK must avoid this). */ export interface IErrorReporter { error(message: any, exception: any): any; } //# sourceMappingURL=IErrorReporter.d.ts.map