Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion typescript/raven.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
// Project: https://github.com/getsentry/raven-js
// Definitions by: Santi Albo <https://github.com/santialbo/>, Benjamin Pannell <http://github.com/spartan563>

declare var Raven: RavenStatic;
declare var Raven: Raven.RavenStatic;

export = Raven;

declare module Raven {
interface RavenOptions {
/** The log level associated with this event. Default: error */
level?: string;
Expand Down Expand Up @@ -229,3 +230,4 @@ interface RavenTransportOptions {
interface RavenPlugin {
(raven: RavenStatic, ...args: any[]): RavenStatic;
}
}