diff options
author | Jose <jose@zeroc.com> | 2018-11-22 21:23:03 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-11-22 21:42:20 +0100 |
commit | 07fd62fd9c862b5718dfd5f4d762b8bc37913488 (patch) | |
tree | 8574c5191783ca52f212865bd17a9353a5ead4f7 /js/src | |
parent | typescript fix: no ice_clone in Ice.Value (diff) | |
download | ice-07fd62fd9c862b5718dfd5f4d762b8bc37913488.tar.bz2 ice-07fd62fd9c862b5718dfd5f4d762b8bc37913488.tar.xz ice-07fd62fd9c862b5718dfd5f4d762b8bc37913488.zip |
typescript: missing ice_cause in Ice.Exception
Diffstat (limited to 'js/src')
-rw-r--r-- | js/src/Ice/Exception.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/Ice/Exception.d.ts b/js/src/Ice/Exception.d.ts index 0ad6c3ec404..0e04daa1c49 100644 --- a/js/src/Ice/Exception.d.ts +++ b/js/src/Ice/Exception.d.ts @@ -38,6 +38,8 @@ declare module "ice" * @return A string representation of this exception. **/ toString():string; + + ice_cause:string|Error; } /** |