Skip to content

Commit

Permalink
Switched to using global JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
bytenik committed Mar 15, 2016
1 parent 0ba0d70 commit 6792a62
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions signalr/signalr.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,17 +170,12 @@ declare namespace SignalR {
host: string;
}

interface JsonConverter {
stringify: (o: any) => string;
parse: (str: string) => any;
}

interface Connection {
clientProtocol: string;
ajaxDataType: string;
contentType: string;
id: string;
json: JsonConverter;
json: JSON;
logging: boolean;
url: string;
qs: string | Object;
Expand Down

0 comments on commit 6792a62

Please sign in to comment.