UNPKG

syms-api-interfaces

Version:
13 lines (12 loc) 490 B
import type { ExtractValue } from '../../types'; export declare const BaseExceptionCode: { readonly BadRequest: "BadRequest"; readonly Unauthorized: "Unauthorized"; readonly NotFound: "NotFound"; readonly Forbidden: "Forbidden"; readonly NotAcceptable: "NotAcceptable"; readonly Timeout: "Timeout"; readonly Conflict: "Conflict"; readonly InternalServerError: "InternalServerError"; }; export type BaseExceptionCode = ExtractValue<typeof BaseExceptionCode>;