Add missing semicolons
This commit is contained in:
parent
6e0c055faf
commit
8f2f4b6d2d
2 changed files with 4 additions and 4 deletions
6
src/@types/koa-slow.d.ts
vendored
6
src/@types/koa-slow.d.ts
vendored
|
|
@ -2,13 +2,13 @@ declare module 'koa-slow' {
|
|||
import { Middleware } from 'koa';
|
||||
|
||||
interface ISlowOptions {
|
||||
url?: RegExp
|
||||
delay?: number
|
||||
url?: RegExp;
|
||||
delay?: number;
|
||||
}
|
||||
|
||||
function slow(options?: ISlowOptions): Middleware;
|
||||
|
||||
namespace slow {} // Hack
|
||||
namespace slow { } // Hack
|
||||
|
||||
export = slow;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue