- Added @eslint/js dependency - Updated eslint.config.js for ESLint 9 compatibility - Added required globals (crypto, localStorage, React, etc.) - Fixed unused imports and variables - Disabled sort-imports temporarily - Formatted all files with Prettier
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
/**
|
|
* Re-export from @bytelyst/errors — shared across all services.
|
|
*/
|
|
export {
|
|
ServiceError,
|
|
BadRequestError,
|
|
UnauthorizedError,
|
|
ForbiddenError,
|
|
NotFoundError,
|
|
ConflictError,
|
|
TooManyRequestsError,
|
|
} from '@bytelyst/errors';
|