Created
September 8, 2016 08:57
-
-
Save adamwitko/bef9e59d5af7ec0f81d66cbe468c6a79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'raygun' { | |
interface RaygunOptions { | |
apiKey: string, | |
host?: string, | |
port?: number, | |
useSSL?: boolean | |
} | |
export class Client { | |
constructor(); | |
init(options: RaygunOptions): Client; | |
send(exception: Error, customData: any, callback: (res: any) => void); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment