Add missing semicolons

This commit is contained in:
Aya Morisawa 2019-02-03 23:52:46 +09:00
parent 6e0c055faf
commit 8f2f4b6d2d
No known key found for this signature in database
GPG key ID: 3E64865D70D579F2
2 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ declare namespace deepcopy {
valueType: DeepcopyCustomizerValueType) => T;
interface DeepcopyOptions<T> {
customizer: DeepcopyCustomizer<T>
customizer: DeepcopyCustomizer<T>;
}
export function deepcopy<T>(

View file

@ -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;
}