[raven]: Fix CaptureOptions.fingerprint definition

This commit is contained in:
Wang Dàpéng 2017-07-07 11:38:23 +08:00 committed by GitHub
parent 135c72d992
commit b2da60db58

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;
}