Files
NativeScript/nativescript-core/nativescript-error.d.ts
2020-01-17 15:12:28 +02:00

10 lines
293 B
TypeScript

/**
* An extended JavaScript Error which will have the nativeError property initialized in case the error is caused by executing platform-specific code.
*/
declare interface NativeScriptError extends Error {
/**
* Represents the native error object.
*/
nativeError: any;
}