Switched to using global JSON

This commit is contained in:
David Pfeffer
2016-03-15 07:47:30 -04:00
parent 0ba0d7058d
commit 6792a62098
+1 -6
View File
@@ -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;