axe-api
Version:
AXE API is a simple tool to create Rest APIs quickly.
12 lines (11 loc) • 699 B
TypeScript
import Server from "./src/Server";
import Model from "./src/Model";
import ApiError from "./src/Exceptions/ApiError";
import RedisAdaptor from "./src/Middlewares/RateLimit/RedisAdaptor";
import { DEFAULT_HANDLERS, DEFAULT_VERSION_CONFIG } from "./src/constants";
import { IoCService, allow, deny, App, AxeRequest, AxeResponse } from "./src/Services";
import { rateLimit, createRateLimitter } from "./src/Middlewares/RateLimit";
export * from "./src/Enums";
export * from "./src/Interfaces";
export * from "./src/Types";
export { App, AxeRequest, AxeResponse, Server, Model, ApiError, RedisAdaptor, DEFAULT_HANDLERS, DEFAULT_VERSION_CONFIG, IoCService, allow, deny, rateLimit, createRateLimitter, };