Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 11 additions & 4 deletions dist/exceptionless.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,10 @@ export declare class Utils {
static parseVersion(source: string): string;
static parseQueryString(query: string, exclusions?: string[]): Object;
static randomNumber(): number;
static isMatch(input: string, patterns: string[]): boolean;
static isMatch(input: string, patterns: string[], ignoreCase?: boolean): boolean;
static isEmpty(input: Object): boolean;
static startsWith(input: string, prefix: string): boolean;
static endsWith(input: string, suffix: string): boolean;
static stringify(data: any, exclusions?: string[], maxDepth?: number): string;
}
export declare class Configuration implements IConfigurationSettings {
Expand Down Expand Up @@ -409,10 +411,15 @@ export declare class SubmissionMethodPlugin implements IEventPlugin {
export declare class DuplicateCheckerPlugin implements IEventPlugin {
priority: number;
name: string;
private recentlyProcessedErrors;
private _processedHashcodes;
private _getCurrentTime;
constructor(getCurrentTime?: () => number);
run(context: EventPluginContext, next?: () => void): void;
}
export declare class EventExclusionPlugin implements IEventPlugin {
priority: number;
name: string;
run(context: EventPluginContext, next?: () => void): void;
private getNow();
private checkDuplicate(error, log);
}
export interface IError extends IInnerError {
modules?: IModule[];
Expand Down
160 changes: 115 additions & 45 deletions dist/exceptionless.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/exceptionless.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/exceptionless.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/exceptionless.min.js.map

Large diffs are not rendered by default.

Loading