mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-03-20 03:18:49 +01:00
15 lines
225 B
TypeScript
15 lines
225 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;
|
||
|
}
|