UNPKG

node-universe

Version:

基于 Nodejs 环境的一款微服务框架,原理来自于宇宙中的恒星,行星,卫星等系统。

10 lines (9 loc) 255 B
import { GenericObject } from '../../typings'; export default class RateLimiter { options: GenericObject; lastTime: number; balance: number; maxBalance: number; constructor(options: GenericObject); check(cost?: number): boolean; }