UNPKG

syms-api-interfaces

Version:
14 lines (12 loc) 405 B
import type { ExtractValue } from '../../types'; export const BaseExceptionCode = { BadRequest: 'BadRequest', Unauthorized: 'Unauthorized', NotFound: 'NotFound', Forbidden: 'Forbidden', NotAcceptable: 'NotAcceptable', Timeout: 'Timeout', Conflict: 'Conflict', InternalServerError: 'InternalServerError', } as const; export type BaseExceptionCode = ExtractValue<typeof BaseExceptionCode>;