fix(angularjs): add toJSON method

This commit is contained in:
Long Yinan
2015-12-03 14:48:27 +08:00
parent 78d36dd49b
commit 0ab253f326
2 changed files with 8 additions and 0 deletions
+3
View File
@@ -136,6 +136,9 @@ declare module angular.resource {
/** the promise of the original server interaction that created this instance. **/
$promise : angular.IPromise<T>;
$resolved : boolean;
toJSON: () => {
[index: string]: any;
}
}
/**