Add missing semicolons
This commit is contained in:
Vendored
+1
-1
@@ -8,7 +8,7 @@ declare namespace deepcopy {
|
|||||||
valueType: DeepcopyCustomizerValueType) => T;
|
valueType: DeepcopyCustomizerValueType) => T;
|
||||||
|
|
||||||
interface DeepcopyOptions<T> {
|
interface DeepcopyOptions<T> {
|
||||||
customizer: DeepcopyCustomizer<T>
|
customizer: DeepcopyCustomizer<T>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function deepcopy<T>(
|
export function deepcopy<T>(
|
||||||
|
|||||||
Vendored
+2
-2
@@ -2,8 +2,8 @@ declare module 'koa-slow' {
|
|||||||
import { Middleware } from 'koa';
|
import { Middleware } from 'koa';
|
||||||
|
|
||||||
interface ISlowOptions {
|
interface ISlowOptions {
|
||||||
url?: RegExp
|
url?: RegExp;
|
||||||
delay?: number
|
delay?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
function slow(options?: ISlowOptions): Middleware;
|
function slow(options?: ISlowOptions): Middleware;
|
||||||
|
|||||||
Reference in New Issue
Block a user