Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove default export, ratelimit must now be imported directly
BREAKING CHANGE: default export is removed, import the ratelimit function directly ```ts // before const ratelimit = require('koa-simple-ratelimit'); import ratelimit from 'koa-simple-ratelimit'; // after const { ratelimit } = require('koa-simple-ratelimit'); import { ratelimit } from 'koa-simple-ratelimit'; ```
- Loading branch information