UNPKG

aws-crt

Version:

NodeJS/browser bindings to the aws-c-* libraries

14 lines (13 loc) 302 B
/** * Library-specific error interface type * * @packageDocumentation * @module error */ /** * Node/browser-shared interface for an error thrown by the CRT. Implementations of the interface * extend the base Javascript Error. */ export interface ICrtError { readonly error_name?: string; }