mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
Make dsn parameter in Raven.config() optional (#23020)
This commit is contained in:
committed by
Wesley Wigham
parent
19d6cbd330
commit
4bb0793fd9
Vendored
+1
-1
@@ -10,7 +10,7 @@ import { IncomingMessage, ServerResponse } from 'http';
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
export const version: string;
|
||||
export function config(dsn: string | false, options?: ConstructorOptions): Client;
|
||||
export function config(dsn?: string | false, options?: ConstructorOptions): Client;
|
||||
export function wrap<T>(func: () => T): () => T;
|
||||
export function wrap<T>(options: any, func: () => T): () => T;
|
||||
export function interceptErr(ctx: any): Client;
|
||||
|
||||
Reference in New Issue
Block a user