fastify-rabbitmq
Version:
A Fastify RabbitMQ Plugin Developed in Pure TypeScript.
15 lines (14 loc) • 744 B
TypeScript
export declare const errors: {
/** Error if there is an invalid option used during registration. */
FASTIFY_RABBIT_MQ_ERR_INVALID_OPTS: import("@fastify/error").FastifyErrorConstructor<{
code: "FASTIFY_RABBIT_MQ_ERR_INVALID_OPTS";
}, [any?, any?, any?]>;
/** Error if there is an setup error of the plugin itself. */
FASTIFY_RABBIT_MQ_ERR_SETUP_ERRORS: import("@fastify/error").FastifyErrorConstructor<{
code: "FASTIFY_RABBIT_MQ_ERR_SETUP_ERRORS";
}, [any?, any?, any?]>;
/** If an invalid usage error was done, this error would pop up. */
FASTIFY_RABBIT_MQ_ERR_USAGE: import("@fastify/error").FastifyErrorConstructor<{
code: "FASTIFY_RABBIT_MQ_ERR_USAGE";
}, [any?, any?, any?]>;
};