Merge pull request #8609 from nojvek/master

Fixes #8582: Add Error.prototype.stack definition
This commit is contained in:
Mohamed Hegazy
2016-05-16 10:34:09 -07:00
+1
View File
@@ -864,6 +864,7 @@ declare const RegExp: RegExpConstructor;
interface Error {
name: string;
message: string;
stack?: string;
}
interface ErrorConstructor {