mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 06:01:56 +01:00
14 lines
227 B
TypeScript
14 lines
227 B
TypeScript
declare module 'koa-slow' {
|
|
import { Middleware } from 'koa';
|
|
|
|
interface ISlowOptions {
|
|
url?: RegExp;
|
|
delay?: number;
|
|
}
|
|
|
|
function slow(options?: ISlowOptions): Middleware;
|
|
|
|
namespace slow {} // Hack
|
|
|
|
export = slow;
|
|
}
|