Skip to content

Instantly share code, notes, and snippets.

@adamwitko
Created September 8, 2016 08:57
Show Gist options
  • Save adamwitko/bef9e59d5af7ec0f81d66cbe468c6a79 to your computer and use it in GitHub Desktop.
Save adamwitko/bef9e59d5af7ec0f81d66cbe468c6a79 to your computer and use it in GitHub Desktop.
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