mirror of
https://github.com/outline/outline.git
synced 2026-06-19 14:25:01 +03:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
// @flow
|
|
import httpErrors from 'http-errors';
|
|
|
|
const apiError = (code: number, id: string, message: string) => {
|
|
return httpErrors(code, message, { id });
|
|
};
|
|
|
|
export default apiError;
|
|
export { httpErrors };
|