UNPKG

@smash-sdk/discovery

Version:
28 lines (27 loc) 1.72 kB
import { UnknownError, NetworkError, InvalidSdkConfigurationError, InvalidRegionOrHostError, InvalidRegionError, InvalidHostError } from "@smash-sdk/core"; import { GenericError as ListPublicServicesGenericError } from "./types/ListPublicServices/ListPublicServicesError"; import { InternalServerError as ListPublicServicesInternalServerError } from "./types/ListPublicServices/ListPublicServicesError"; import { BadGatewayError as ListPublicServicesBadGatewayError } from "./types/ListPublicServices/ListPublicServicesError"; import { GatewayTimeoutError as ListPublicServicesGatewayTimeoutError } from "./types/ListPublicServices/ListPublicServicesError"; export declare const errors: { ListPublicServices: { InternalServerError: typeof ListPublicServicesInternalServerError; BadGatewayError: typeof ListPublicServicesBadGatewayError; GatewayTimeoutError: typeof ListPublicServicesGatewayTimeoutError; GenericError: typeof ListPublicServicesGenericError; UnknownError: typeof UnknownError; NetworkError: typeof NetworkError; }; ListPublicServicesError: { InternalServerError: typeof ListPublicServicesInternalServerError; BadGatewayError: typeof ListPublicServicesBadGatewayError; GatewayTimeoutError: typeof ListPublicServicesGatewayTimeoutError; GenericError: typeof ListPublicServicesGenericError; UnknownError: typeof UnknownError; NetworkError: typeof NetworkError; }; InvalidSdkConfigurationError: typeof InvalidSdkConfigurationError; InvalidRegionOrHostError: typeof InvalidRegionOrHostError; InvalidRegionError: typeof InvalidRegionError; InvalidHostError: typeof InvalidHostError; };