Merge pull request #17823 from wong2/patch-1

[raven]: Fix CaptureOptions.fingerprint definition
This commit is contained in:
Ron Buckton
2017-07-07 02:52:57 -07:00
committed by GitHub

View File

@@ -84,6 +84,6 @@ export type TransportCallback = (options: { [key: string]: any }) => void;
export interface CaptureOptions {
tags?: { [key: string]: string };
extra?: { [key: string]: any };
fingerprint?: string;
fingerprint?: string[];
level?: string;
}