UNPKG

aws-crt

Version:

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

20 lines (17 loc) 421 B
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ /** * 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; }