forked from valor-software/ng2-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated: angular2 0.42.0 integration
- Loading branch information
Showing
9 changed files
with
61 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
interface ObjectConstructor { | ||
/** | ||
* Copy the values of all of the enumerable own properties from one or more source objects to a | ||
* target object. Returns the target object. | ||
* @param target The target object to copy to. | ||
* @param sources One or more source objects to copy properties from. | ||
*/ | ||
assign(target: any, ...sources: any[]): any; | ||
|
||
/** | ||
* Returns true if the values are the same value, false otherwise. | ||
* @param value1 The first value. | ||
* @param value2 The second value. | ||
*/ | ||
is(value1: any, value2: any): boolean; | ||
|
||
/** | ||
* Sets the prototype of a specified object o to object proto or null. Returns the object o. | ||
* @param o The object to change its prototype. | ||
* @param proto The value of the new prototype or null. | ||
* @remarks Requires `__proto__` support. | ||
*/ | ||
setPrototypeOf(o: any, proto: any): any; | ||
} | ||
|
||
declare function require(path:string): any; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
/// <reference path="typings/tsd.d.ts"/> | ||
/// <reference path="node_modules/angular2/bundles/typings/angular2/angular2.d.ts" /> | ||
/// <reference path="es6-object.d.ts"/> |