Files
NativeScript/nativescript-core/nativescript-error.d.ts
Nathan Walker da3c0b973d chore: format
2020-07-11 11:01:40 -07:00

10 lines
281 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;
}